/*
Theme Name: Midnight
Theme URI: https://bonuski.com/
Author: Bonuski Design Team
Author URI: https://bonuski.com/
Description: Midnight is a mobile-first casino affiliate theme designed for Bonuski.com. Features include drawer navigation, comparison bonus drawer with sliders, drag-scrollable carousels, chip-based filtering for casino/slots/sports cards, dark midnight + gold color palette with cobalt accents, and Montserrat typography. Single-page layout optimized for 390px mobile viewport with desktop fallback support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: midnight
Tags: dark, gold, casino, affiliate, mobile-first, one-column, custom-colors, custom-menu, featured-images, theme-options, threaded-comments
*/

* { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; line-height: inherit; }
:root {
  --font-sans: 'Montserrat', Arial, sans-serif;
  --surface-2: #151436;
  --border: rgba(96,130,200,0.13);
  --text: #ffffff;
  --text-secondary: #6e7a99;
  --text-muted: #97a3c0;
  --gold: #f0a823;
  --gold-soft: #f7c34a;
  --gold-bright: #ffd76b;
  --cobalt-bright: #6486d6;
  --ghost-text: #8597e0;
  --grad-cta: linear-gradient(135deg, #ffd76b 0%, #f7c34a 30%, #f0a823 65%, #b87d1a 100%);
  --grad-aurora:
    radial-gradient(ellipse 60% 40% at 15% 15%, rgba(57,87,181,0.442) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 85% 10%, rgba(115,103,216,0.208) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(240,168,35,0.156) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 60%, rgba(240,168,35,0.104) 0%, transparent 50%),
    #080b20;
  --grad-hero:
    radial-gradient(ellipse at 0% 0%, rgba(57,87,181,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(115,103,216,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(240,168,35,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(140,148,220,0.3) 0%, transparent 50%),
    linear-gradient(135deg, #131a44 0%, #161c42 100%);
  --grad-card:
    linear-gradient(135deg, #11163a 0%, #0d1230 100%);
  --grad-card-featured:
    linear-gradient(135deg, #141838 0%, #0e1330 100%);
  --grad-border-rainbow: rgba(240,168,35,0.65);
  --grad-bonus: linear-gradient(135deg, rgba(122,164,255,0.18) 0%, rgba(122,164,255,0.08) 100%);
  --grad-chip-active: linear-gradient(135deg, #ffd76b 0%, #f0a823 100%);
  --grad-glass: linear-gradient(180deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
}

.phone {
  max-width: 390px;
  margin: 0 auto;
  background: var(--grad-aurora);
  border-radius: 24px;
  border: 1px solid rgba(57,87,181,0.156);
  overflow: hidden;
  font-family: var(--font-sans);
  color: var(--text);
  position: relative;
}
.phone::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 2px at 18% 22%, rgba(255,255,255,0.65), transparent 70%),
    radial-gradient(circle 1px at 72% 18%, rgba(255,255,255,0.52), transparent 70%),
    radial-gradient(circle 1.5px at 88% 45%, rgba(240,168,35,0.6), transparent 70%),
    radial-gradient(circle 1px at 32% 52%, rgba(100,134,214,0.65), transparent 70%),
    radial-gradient(circle 1px at 12% 78%, rgba(255,255,255,0.39), transparent 70%),
    radial-gradient(circle 1.5px at 65% 85%, rgba(240,168,35,0.52), transparent 70%);
  pointer-events: none; z-index: 0;
}
.phone > * { position: relative; z-index: 1; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  background: linear-gradient(180deg, #0d1028 0%, #0a0e26 100%);
  border-bottom: 0.5px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(240,168,35,0.39) 50%, transparent 100%) 1;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-plus {
  width: 35px; height: 35px; border-radius: 10px;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 0 20px rgba(240,168,35,0.52),
    0 0 40px rgba(240,168,35,0.195),
    inset 0 1px 0 rgba(255,255,255,0.455),
    inset 0 -1px 0 rgba(0,0,0,0.26);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}
.nav-plus::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 12px;
  background: var(--grad-border-rainbow);
  z-index: -1;
  opacity: 0.6;
  filter: blur(6px);
}
.nav-plus:hover { transform: scale(1.05); }
.nav-plus.open:hover { transform: rotate(45deg) scale(1.05); }
.nav-plus svg { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.26)); }

/* PRIZE (gift) button — gold twin to nav-plus */
.nav-prize {
  width: 35px; height: 35px; border-radius: 10px;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 0 20px rgba(240,168,35,0.52),
    0 0 40px rgba(240,168,35,0.195),
    inset 0 1px 0 rgba(255,255,255,0.455),
    inset 0 -1px 0 rgba(0,0,0,0.26);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-prize::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 12px;
  background: var(--grad-border-rainbow);
  z-index: -1;
  opacity: 0.6;
  filter: blur(6px);
}
.nav-prize:hover { transform: scale(1.05); }
.nav-prize svg { filter: drop-shadow(0 1px 0 rgba(0,0,0,0.26)); }
.nav-prize.open {
  box-shadow:
    0 0 28px rgba(240,168,35,0.65),
    0 0 50px rgba(240,168,35,0.25),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.nav-logo-text {
  font-size: 17.5px; font-weight: 500; letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.nav-logo-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.nav-logo-tag {
  font-size: 11px;
  color: var(--gold-soft);
  opacity: 0.75;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.nav-logo-flag {
  width: 22px; height: 14px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px; /* fine-align top to BONUSKI cap-height */
}
.nav-logo-flag svg { display: block; width: 100%; height: 100%; }
.nav-icons { display: flex; gap: 12px; }
.icon-btn {
  width: 35px; height: 35px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(100,134,214,0.195) 0%, rgba(57,87,181,0.104) 100%);
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--cobalt-bright);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.icon-btn:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.55);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}
.icon-btn.open {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 14px rgba(240,168,35,0.32);
}

/* SEARCH */
.search-bar {
  margin: 14px 16px 0;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 5px 5px 5px 14px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.039);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-bar:focus-within {
  border-color: rgba(240,168,35,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.039),
    0 0 0 3px rgba(240,168,35,0.08);
}
.search-icon {
  color: var(--text);
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  padding: 6px 0;
}
.search-input::placeholder { color: var(--text); }
.search-btn {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--grad-cta);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #0a0e20;
  box-shadow:
    0 4px 12px rgba(240,168,35,0.35),
    0 0 0 0.5px rgba(240,168,35,0.5),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s, box-shadow 0.2s;
}
.search-btn:hover {
  box-shadow:
    0 6px 18px rgba(240,168,35,0.52),
    0 0 0 0.5px rgba(240,168,35,0.7),
    inset 0 1px 0 rgba(255,255,255,0.5);
}
.search-btn:active { transform: scale(0.94); }

/* CHIPS */
/* Horizontal-scroll row. Vertical padding is generous so the active chip's
   outer glow (box-shadow up to 40px blur) isn't clipped by the scroll container. */
.chips { display: flex; gap: 7px; padding: 18px 16px 14px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }

/* Per-section filter chips: wrapping, no horizontal scroll */
.chips-section {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 2px 16px 12px;
  overflow: visible;
}
.chips-section .chip {
  font-size: 11px; padding: 5px 11px;
}
.chip {
  flex-shrink: 0; padding: 8px 14px; border-radius: 10px;
  font-size: 12px; font-weight: 500; cursor: pointer; white-space: nowrap;
  border: 0.5px solid rgba(255,255,255,0.35);
  color: var(--text);
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  backdrop-filter: blur(8px);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.chip:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}
.chip.active {
  color: var(--gold-soft);
  border-color: rgba(240,168,35,0.325);
  background: linear-gradient(135deg, rgba(240,168,35,0.182) 0%, rgba(240,168,35,0.052) 100%);
  font-weight: 500;
  box-shadow: none;
}

/* HERO */
.hero {
  margin: 10px 16px 16px;
  background: var(--grad-hero);
  border: 0.5px solid rgba(240,168,35,0.45);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.3s;
}
.hero:hover {
  box-shadow: none;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,168,35,0.286), transparent);
  pointer-events: none;
}
.hero-stars {
  position: absolute; inset: 0; pointer-events: none;
  background:
    /* Bright white stars (big) */
    radial-gradient(2px 2px at 18% 22%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(2.5px 2.5px at 82% 68%, rgba(255,255,255,0.85), transparent 70%),
    radial-gradient(2px 2px at 38% 82%, rgba(255,255,255,0.8), transparent 70%),
    /* Medium white stars */
    radial-gradient(1.5px 1.5px at 55% 14%, rgba(255,255,255,0.75), transparent 70%),
    radial-gradient(1.5px 1.5px at 72% 38%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1.5px 1.5px at 12% 52%, rgba(255,255,255,0.7), transparent 70%),
    radial-gradient(1.5px 1.5px at 92% 18%, rgba(255,255,255,0.65), transparent 70%),
    radial-gradient(1.5px 1.5px at 28% 68%, rgba(255,255,255,0.6), transparent 70%),
    /* Small white stars (the "dust") */
    radial-gradient(1px 1px at 8% 32%, rgba(255,255,255,0.65), transparent 70%),
    radial-gradient(1px 1px at 48% 48%, rgba(255,255,255,0.585), transparent 70%),
    radial-gradient(1px 1px at 62% 88%, rgba(255,255,255,0.52), transparent 70%),
    radial-gradient(1px 1px at 88% 82%, rgba(255,255,255,0.455), transparent 70%),
    radial-gradient(1px 1px at 22% 12%, rgba(255,255,255,0.52), transparent 70%),
    radial-gradient(1px 1px at 75% 52%, rgba(255,255,255,0.39), transparent 70%),
    radial-gradient(0.8px 0.8px at 42% 28%, rgba(255,255,255,0.455), transparent 70%),
    radial-gradient(0.8px 0.8px at 96% 48%, rgba(255,255,255,0.39), transparent 70%),
    radial-gradient(0.5px 0.5px at 52% 72%, rgba(255,255,255,0.39), transparent 70%),
    radial-gradient(0.5px 0.5px at 15% 82%, rgba(255,255,255,0.325), transparent 70%),
    /* Cobalt blue stars */
    radial-gradient(1.5px 1.5px at 68% 72%, rgba(125,170,240,0.75), transparent 70%),
    radial-gradient(1px 1px at 32% 38%, rgba(100,150,230,0.6), transparent 70%),
    radial-gradient(1.5px 1.5px at 85% 32%, rgba(125,170,240,0.715), transparent 70%),
    radial-gradient(1px 1px at 58% 62%, rgba(100,150,230,0.65), transparent 70%),
    /* Purple / violet stars */
    radial-gradient(2px 2px at 45% 58%, rgba(170,130,230,0.715), transparent 70%),
    radial-gradient(1px 1px at 78% 8%, rgba(170,130,230,0.65), transparent 70%),
    radial-gradient(1.5px 1.5px at 25% 42%, rgba(155,115,215,0.585), transparent 70%),
    /* Pale gold — the faint warm ones */
    radial-gradient(1.5px 1.5px at 65% 28%, rgba(255,220,150,0.715), transparent 70%),
    radial-gradient(1px 1px at 38% 92%, rgba(255,220,150,0.585), transparent 70%),
    radial-gradient(1px 1px at 10% 72%, rgba(255,220,150,0.52), transparent 70%);
  animation: herosparkle 6s ease-in-out infinite;
}
@keyframes herosparkle {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
.hero-stars-2 {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(0.5px 0.5px at 5% 10%, rgba(255,255,255,0.65), transparent 70%),
    radial-gradient(0.5px 0.5px at 95% 92%, rgba(255,255,255,0.585), transparent 70%),
    radial-gradient(0.5px 0.5px at 45% 5%, rgba(125,170,240,0.65), transparent 70%),
    radial-gradient(0.5px 0.5px at 62% 42%, rgba(255,255,255,0.52), transparent 70%),
    radial-gradient(0.5px 0.5px at 88% 62%, rgba(170,130,230,0.585), transparent 70%),
    radial-gradient(0.5px 0.5px at 18% 88%, rgba(255,220,150,0.52), transparent 70%),
    radial-gradient(0.5px 0.5px at 72% 18%, rgba(255,255,255,0.455), transparent 70%),
    radial-gradient(0.5px 0.5px at 35% 55%, rgba(125,170,240,0.52), transparent 70%);
  animation: herosparkle2 9s ease-in-out infinite;
}
@keyframes herosparkle2 {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-glow {
  position: absolute; right: -40px; top: -50px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(100,134,214,0.39) 0%, rgba(115,103,216,0.109) 40%, transparent 70%);
  filter: blur(24px);
}
.hero-glow-2 {
  position: absolute; left: -30px; bottom: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(57,87,181,0.455) 0%, transparent 65%);
  filter: blur(20px);
}
h1.hero-title {
  margin-top: 0;
}
.hero-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #ffffff;
  position: relative; z-index: 2;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 13px;
  color: #ffffff;
  opacity: 1;
  line-height: 1.55;
  margin-bottom: 16px;
  position: relative; z-index: 2;
  font-weight: 500;
}
.hero-btns { display: flex; gap: 8px; position: relative; z-index: 2; }
.btn-primary {
  font-family: var(--font-sans);
  flex: 1; padding: 12px 0; border-radius: 10px;
  background: var(--grad-cta); color: #0a0e20;
  font-size: 13px; font-weight: 600; text-align: center; cursor: pointer;
  box-shadow:
    0 8px 24px rgba(240,168,35,0.39),
    0 2px 6px rgba(240,168,35,0.195),
    inset 0 1px 0 rgba(255,255,255,0.455);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

/* Press-inward animation for ALL primary gold buttons */
.btn-primary:active,
.cbtn-primary:active,
.sport-btns .sport-cta.primary:active,
.copy-btn:active,
.prize-bonus-cta:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 1px 3px rgba(240,168,35,0.22),
    inset 0 2px 6px rgba(0,0,0,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.18);
}
.btn-ghost {
  flex: 1; padding: 12px 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 13px; font-weight: 500; text-align: center; cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.35);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.btn-ghost:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}

/* ========== PROMO CAROUSEL ========== */
.promo-wrap {
  position: relative;
  margin: 28px 16px 20px;
}

.promo-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 0 4px;
}
.promo-track::-webkit-scrollbar { display: none; }

.promo-card {
  flex-shrink: 0;
  width: 158px;
  background: var(--grad-card-featured);
  border: 0.5px solid rgba(240,168,35,0.65);
  border-radius: 10px;
  padding: 20px 10px 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.promo-banner {
  font-family: var(--font-sans);
  position: absolute;
  top: 0;
  left: 0; right: 0;
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 11px; font-weight: 600;
  padding: 3px 0 4px;
  text-align: center;
  z-index: 1;
}
.promo-content {
  display: flex; align-items: center; gap: 10px;
  margin-top: 2px;
}
.promo-logo {
  width: 42px; height: 42px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(43,95,168,0.22) 0%, rgba(18,26,51,1) 100%);
  border: 0.5px solid rgba(100,134,214,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.promo-logo.spinline   { background: linear-gradient(135deg, #0e1a0e 0%, #061106 100%); color: #4ade80; }
.promo-logo.iwild      { background: linear-gradient(135deg, #2a1840 0%, #160826 100%); color: #fbbf24; }
.promo-logo.cryptoboss { background: linear-gradient(135deg, #1a201a 0%, #0f130f 100%); color: #facc15; }
.promo-logo.vavada     { background: linear-gradient(135deg, #2a1408 0%, #1a0a00 100%); color: #f05500; }
.promo-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-top: -4px;
}
.promo-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1;
}
.promo-stars {
  font-size: 13px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  line-height: 1;
}

/* SECTION HEADER — interactive accordion */
.sec-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px 10px;
  cursor: pointer;
  user-select: none;
  transition: padding 0.2s;
}
.sec-head-left {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
h2.sec-title {
  margin: 0;
}
.sec-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sec-chevron {
  width: 29px; height: 29px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(240,168,35,0.182) 0%, rgba(240,168,35,0.052) 100%);
  border: 0.5px solid rgba(240,168,35,0.325);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sec-chevron svg {
  color: var(--gold-soft);
  transition: color 0.2s;
  width: 11px; height: 11px;
}
.sec-head-left:hover .sec-chevron {
  background: linear-gradient(135deg, rgba(240,168,35,0.286) 0%, rgba(240,168,35,0.104) 100%);
  border-color: rgba(240,168,35,0.585);
  box-shadow: 0 0 12px rgba(240,168,35,0.325);
}
.sec-head-left:hover .sec-chevron svg { color: var(--gold-bright); }
.sec-head.open .sec-chevron {
  transform: rotate(180deg);
  background: linear-gradient(135deg, rgba(240,168,35,0.325) 0%, rgba(240,168,35,0.13) 100%);
  border-color: rgba(240,168,35,0.65);
  box-shadow: 0 0 14px rgba(240,168,35,0.39);
}
.sec-head.open .sec-chevron svg { color: var(--gold-bright); }
.sec-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px; font-weight: 500;
  padding: 7px 11px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(240,168,35,0.182) 0%, rgba(240,168,35,0.052) 100%);
  border: 0.5px solid rgba(240,168,35,0.325);
  color: var(--gold-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.sec-link svg {
  transition: transform 0.2s, color 0.2s;
  color: var(--gold-soft);
  width: 11px; height: 11px;
}
.sec-link:hover {
  color: var(--gold-bright);
  background: linear-gradient(135deg, rgba(240,168,35,0.286) 0%, rgba(240,168,35,0.104) 100%);
  border-color: rgba(240,168,35,0.585);
  box-shadow: 0 0 12px rgba(240,168,35,0.325);
}
.sec-link:hover svg {
  transform: translateX(2px);
  color: var(--gold-bright);
}

/* Collapsible description block (SEO text for each section) */
.sec-desc {
  margin: 0 16px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sec-desc.open {
  grid-template-rows: 1fr;
  margin-bottom: 14px;
}
.sec-desc-inner {
  overflow: hidden;
  min-height: 0;
}
.sec-desc-box {
  background: linear-gradient(135deg, rgba(240,168,35,0.078) 0%, rgba(57,87,181,0.104) 100%);
  border: 0.5px solid rgba(240,168,35,0.234);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12px; line-height: 1.6;
  color: var(--text);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}
.sec-desc-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240,168,35,0.455) 50%, transparent 100%);
}
.sec-desc-box::after {
  content: '';
  position: absolute; left: 0; top: 14px; bottom: 14px; width: 2px;
  background: var(--grad-cta);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(240,168,35,0.455);
}
.sec-desc-box strong {
  color: #ffffff;
  font-weight: 600;
}
.sec-desc-box em {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
}
.sec-desc-box p + p { margin-top: 8px; }

/* CASINO CARD — animated gold stroke around full rounded contour */
.casino-card {
  margin: 0 16px 14px;
  background: var(--grad-card-featured);
  border-radius: 14px;
  padding: 26px 14px 14px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  border: 0.5px solid rgba(122,164,255,0.22);
  transition: border-color 0.2s;
}
.casino-card:hover { border-color: rgba(122,164,255,0.1); }

/* Two SVG half-paths: each starts at top-center under the banner and
   wraps one half of the card, meeting again at bottom-center.
   SVG geometry is rendered at card's actual pixel size by JS for perfect corners. */
.card-stroke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.card-stroke path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(240,168,35,0.55));
  /* fast roll-back when un-hovered */
  transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.6, 1);
}
.casino-card:hover .card-stroke path,
.sport-card:hover .card-stroke path {
  stroke-dashoffset: 0 !important;
  /* slower roll-out when entering */
  transition: stroke-dashoffset 0.6s cubic-bezier(0.45, 0, 0.25, 1);
}

.top-pick-banner {
  font-family: var(--font-sans);
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 11px; font-weight: 600;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(240,168,35,0.455);
  white-space: nowrap;
  z-index: 2;
}

.casino-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.casino-logo {
  width: 64px; height: 64px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(57,87,181,0.195) 0%, rgba(18,26,51,1) 100%);
  border: 0.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.casino-logo.stake { background: linear-gradient(135deg, #14202a 0%, #0a1420 100%); color: #00d601; }
.casino-logo.bcgame { background: linear-gradient(135deg, #0f1228 0%, #07091c 100%); color: #5b4ccf; }
.casino-logo.vavada { background: linear-gradient(135deg, #201008 0%, #160800 100%); color: #f05500; }
.casino-info { flex: 1; min-width: 0; }
.casino-name { font-size: 18px; font-weight: 600; margin-bottom: 0; letter-spacing: -0.01em; }
.casino-stars {
  font-size: 15px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.3px;
  margin-bottom: 5px;
}
.casino-flag {
  position: absolute;
  top: 32px; right: 14px;
  width: 31px; height: 20px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.casino-flag svg { display: block; width: 100%; height: 100%; }
.tag-row { display: flex; gap: 5px; margin-bottom: 12px; flex-wrap: wrap; }
.ctag {
  font-size: 11px; padding: 3px 9px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  color: var(--text-muted);
  border: 0.5px solid rgba(100,134,214,0.39);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.ctag:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}
.casino-bonus {
  background: var(--grad-bonus);
  border: 0.5px solid rgba(240,168,35,0.39);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.065), 0 0 20px rgba(122,164,255,0.14);
  transition: filter 0.35s ease;
}
.casino-card:hover .casino-bonus {
  filter: brightness(1.5);
}
.casino-bonus::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(122,164,255,0.18) 0%, transparent 45%);
  pointer-events: none;
}
.bonus-label {
  font-size: 10px; font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  position: relative;
  opacity: 0.85;
}
.bonus-value {
  font-size: 16px; font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  position: relative;
}
.bonus-value.is-text {
  color: var(--text);
  font-weight: 600;
}
.bonus-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg, rgba(240,168,35,0) 0%, rgba(240,168,35,0.65) 50%, rgba(240,168,35,0) 100%);
  margin: 0 14px;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.bonus-tag {
  font-size: 10px; font-weight: 500;
  color: var(--gold-soft);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  opacity: 0.85;
  white-space: nowrap;
}
.bonus-tag span {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
  opacity: 1;
}
.casino-btns { display: flex; gap: 8px; }
.cbtn-primary {
  font-family: var(--font-sans);
  flex: 2; padding: 10px 0; border-radius: 10px;
  background: var(--grad-cta); color: #0a0e20;
  font-size: 12px; font-weight: 600; text-align: center; cursor: pointer;
  box-shadow: 0 6px 18px rgba(240,168,35,0.325), inset 0 1px 0 rgba(255,255,255,0.39);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

/* ★ Review — midnight-blue text ★ */
.cbtn-ghost {
  flex: 1; padding: 10px 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 12px; font-weight: 500;
  text-align: center; cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.35);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.cbtn-ghost:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}

/* SLOTS — vertical tiles, "Demo Slots Play for Free" style */
.slots-wrap {
  position: relative;
  margin: 0 16px;
}
.slots-row {
  display: flex;
  gap: 10px;
  padding: 0 0 4px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.slots-row::-webkit-scrollbar { display: none; }

.slot-card {
  flex-shrink: 0;
  width: 146px;
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.65);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Slot preview image area */
.slot-img {
  width: 100%;
  height: 156px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(57,87,181,0.55), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(240,168,35,0.32), transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(115,103,216,0.18), transparent 50%),
    linear-gradient(135deg, #1a2244 0%, #0c1226 100%);
  display: flex; align-items: center; justify-content: center;
}
.slot-img-icon {
  font-size: 38px;
  filter: drop-shadow(0 4px 12px rgba(240,168,35,0.45));
}
/* Top stars plate — mirrors bottom Free Slots plate exactly */
.slot-stars {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 6px 0 7px;
  text-align: center;
  font-size: 0;
  background: linear-gradient(135deg, rgba(20,30,68,0.95) 0%, rgba(14,22,52,0.95) 100%);
  z-index: 2;
}
.slot-stars::before {
  content: '★ ★ ★ ★ ★';
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.8px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 3px rgba(240,168,35,0.45));
}

/* Slot body — name + demo button */
.slot-body {
  padding: 10px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  flex: 1;
}
.slot-name {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  min-height: 28px;
  display: flex; align-items: center; justify-content: center;
}
.slot-demo {
  width: 100%;
  padding: 7px 0;
  border-radius: 7px;
  border: 0.5px solid rgba(240,168,35,0.7);
  background: transparent;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.slot-demo:hover {
  background: linear-gradient(135deg, rgba(240,168,35,0.18) 0%, rgba(240,168,35,0.06) 100%);
}

/* Bottom "Free Slots" plate — mirrors top stars plate */
.slot-tag {
  font-family: var(--font-sans);
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 0;
  margin-top: auto;
}

/* SPORTSBOOK — animated gold stroke around full rounded contour */
.sport-card {
  margin: 0 16px 14px;
  background: var(--grad-card-featured);
  border-radius: 14px;
  padding: 22px 14px 18px;
  display: flex; align-items: center; gap: 14px;
  position: relative;
  overflow: visible;
  cursor: pointer;
  border: 0.5px solid rgba(122,164,255,0.22);
  transition: border-color 0.2s;
}
.sport-card:hover { border-color: rgba(122,164,255,0.1); }
.sport-banner {
  font-family: var(--font-sans);
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 11px; font-weight: 600;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(240,168,35,0.455);
  white-space: nowrap;
  z-index: 2;
}
.sport-logo {
  width: 64px; height: 64px; border-radius: 12px;
  background: var(--surface-2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em;
  border: 0.5px solid var(--border);
}
.sport-logo.gg { background: linear-gradient(135deg, #142900 0%, #0e1f00 100%); color: #6bc21c; }
.sport-logo.bb { background: linear-gradient(135deg, #0c1c3a 0%, #08172f 100%); color: #3b85e8; }
.sport-logo.mb { background: linear-gradient(135deg, #2a1405 0%, #1c0d02 100%); color: #ff9a3c; }
.sport-info {
  flex: 1; min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sport-name { font-size: 17px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.01em; }
.sport-bonus {
  font-size: 13px; margin-bottom: 6px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.sport-bonus-pct {
  color: var(--gold-soft);
}
.sport-tags { display: flex; gap: 4px; flex-wrap: wrap; row-gap: 4px; }
.sport-tags .ctag { font-size: 10px; padding: 3px 7px; }

.sport-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  align-self: center;
}
.sport-btns .sport-cta {
  padding: 8px 12px;
  border-radius: 9px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-width: 92px;
}
.sport-btns .sport-cta.primary {
  font-family: var(--font-sans);
  font-weight: 600;
  background: var(--grad-cta);
  color: #0a0e20;
  border: 0.5px solid transparent;
  box-shadow: 0 4px 12px rgba(240,168,35,0.32), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.sport-btns .sport-cta.ghost {
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.35);
  color: var(--text);
}
.sport-btns .sport-cta.ghost:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}

/* legacy single-button kept for compat — same as ghost variant */
.sport-cta {
  padding: 8px 14px; border-radius: 9px;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(100,134,214,0.39);
  color: var(--ghost-text); font-size: 12px; font-weight: 500;
  cursor: pointer; flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.sport-cta:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}

/* BONUSES */
.bonus-row {
  margin: 0 16px 8px;
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.45);
  border-radius: 10px;
  padding: 12px 13px;
  display: flex; align-items: center; gap: 11px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s;
}
.bonus-row::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 0 2px 2px 0;
  background: var(--grad-cta);
  transition: height 0.3s ease-out;
  box-shadow: 0 0 12px rgba(240,168,35,0.455);
}
.bonus-row:hover::before { height: 70%; }
.bonus-row:hover {
  border-color: rgba(240,168,35,0.7);
  box-shadow:
    0 3px 12px rgba(240,168,35,0.28),
    0 1px 5px rgba(240,168,35,0.2);
}
.bonus-logo { width: 34px; height: 34px; border-radius: 7px; flex-shrink: 0; }
.bonus-desc { flex: 1; font-size: 12px; }
.bonus-desc span { display: block; font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.copy-btn {
  font-family: var(--font-sans);
  padding: 7px 13px; border-radius: 8px;
  background: var(--grad-cta);
  color: #0a0e20; font-size: 11px; font-weight: 600; cursor: pointer; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(240,168,35,0.26), inset 0 1px 0 rgba(255,255,255,0.325);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}

/* GUIDES */
.guide-row {
  margin: 0 16px 8px;
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.45);
  border-radius: 10px;
  padding: 11px 13px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.guide-row::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 0 2px 2px 0;
  background: var(--grad-cta);
  transition: height 0.3s ease-out;
  box-shadow: 0 0 12px rgba(240,168,35,0.455);
}
.guide-row:hover::before { height: 70%; }
.guide-row:hover {
  border-color: rgba(240,168,35,0.7);
  box-shadow:
    0 3px 12px rgba(240,168,35,0.28),
    0 1px 5px rgba(240,168,35,0.2);
}
/* Invisible spacer to balance the arrow on the right so the text stays centered */
.guide-text {
  flex: 1;
  font-size: 12px;
  text-align: left;
}
.guide-arrow {
  width: 22px; height: 22px;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-soft);
  transition: color 0.2s, transform 0.2s;
}
.guide-row:hover .guide-arrow {
  color: var(--gold-bright);
  transform: translateX(2px);
}

/* REVIEWS */
.review-card {
  margin: 0 16px 10px;
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.45);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.review-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,168,35,0.286), transparent);
}
.review-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,168,35,0.26) 0%, rgba(57,87,181,0.26) 100%);
  border: 0.5px solid rgba(240,168,35,0.325);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-size: 12px; font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.review-sub {
  font-size: 10px; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.review-sub .dot { opacity: 0.5; }
.review-stars {
  font-size: 11px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review-body {
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}
.review-body strong {
  color: #ffffff;
  font-weight: 600;
}

/* Reviews CTA / summary strip */

/* ABOUT THE SITE */
.about-box {
  margin: 0 16px 14px;
  padding: 16px;
  background: linear-gradient(135deg, #141838 0%, #0e1330 100%);
  border-radius: 14px;
  border: 0.5px solid rgba(240,168,35,0.45);
  position: relative;
  overflow: hidden;
}
.about-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,168,35,0.286), transparent);
  pointer-events: none;
}
.about-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.about-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--grad-cta);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(240,168,35,0.39), inset 0 1px 0 rgba(255,255,255,0.39);
  flex-shrink: 0;
}
.about-title {
  font-size: 14px; font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.about-body {
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
}
.about-body p + p { margin-top: 8px; }
.about-body strong {
  color: #ffffff;
  font-weight: 600;
}
.about-body em {
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 0.5px solid rgba(240,168,35,0.195);
}
.about-stat {
  text-align: center;
}
.about-stat-num {
  font-size: 16px; font-weight: 500;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 3px;
}
.about-stat-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FOOTER */
.footer {
  margin: 20px 0 0;
  padding: 24px 20px 20px;
  background: linear-gradient(180deg, rgba(6,11,28,0.6) 0%, rgba(3,6,15,0.95) 100%);
  border-top: 0.5px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(240,168,35,0.39) 50%, transparent 100%) 1;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240,168,35,0.13) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(57,87,181,0.156) 0%, transparent 55%);
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }

/* Brand — just wordmark, centered */
.footer-brand-name {
  font-size: 22px; font-weight: 500; letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ffffff 0%, #ffd166 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.footer-brand-tag {
  font-size: 11px; font-weight: 400;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  opacity: 0.85;
  margin-bottom: 22px;
}

/* Socials — centered row */
.footer-social-head {
  font-size: 11px; font-weight: 500;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(240,168,35,0.182) 0%, rgba(240,168,35,0.052) 100%);
  border: 0.5px solid rgba(240,168,35,0.39);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(240,168,35,0.286) 0%, rgba(240,168,35,0.104) 100%);
  box-shadow: 0 0 14px rgba(240,168,35,0.32);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240,168,35,0.455) 50%, transparent 100%);
  margin: 0 auto 22px;
  max-width: 220px;
}

/* Nav — centered, equal gap, no transform on hover */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 22px;
  margin-bottom: 24px;
  padding: 0 4px;
}
.footer-link {
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
}
.footer-link:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 10px rgba(240,168,35,0.52);
}

/* Legal copy — centered */
.footer-legal {
  font-size: 11px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.footer-legal p + p { margin-top: 10px; }
.footer-legal strong {
  color: #ffffff;
  font-weight: 700;
}

/* Inline links in the footer (bold + subtle gold underline) */
.footer a.fl,
.footer-legal a,
.footer-warning a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(240,168,35,0.715);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: text-decoration-color 0.2s, text-shadow 0.2s;
}
.footer a.fl:hover,
.footer-legal a:hover,
.footer-warning a:hover {
  text-decoration-color: var(--gold-bright);
  text-shadow: 0 0 8px rgba(240,168,35,0.455);
}

/* Warning box — still left-accented but centered horizontally */
.footer-warning {
  font-size: 11px;
  color: var(--text);
  line-height: 1.55;
  margin: 0 auto 20px;
  max-width: 340px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(240,168,35,0.104) 0%, rgba(240,168,35,0.026) 100%);
  border: 0.5px solid rgba(240,168,35,0.286);
  border-radius: 10px;
  text-align: center;
}
.footer-warning strong {
  color: #ffffff;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

/* Badges as clickable monochrome icons */
.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  color: rgba(174, 177, 190, 0.715);
  cursor: pointer;
  transition: color 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.8;
}
.badge:hover {
  color: rgba(226, 231, 242, 0.85);
  opacity: 1;
  transform: translateY(-1px);
}
.badge svg { display: block; }

.footer-copyright {
  margin: 20px -20px -20px;
  padding: 12px 16px;
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}

/* DISCLAIMER */

/* BOTTOM NAV */
.bottom-nav {
  display: flex;
  background: var(--grad-glass);
  backdrop-filter: blur(24px);
  border-top: 0.5px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, rgba(240,168,35,0.39) 50%, transparent 100%) 1;
  padding: 13px 0 18px;
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px; cursor: pointer;
  padding: 5px 0;
  position: relative;
}
.bnav-item::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 0 0 2px 2px;
  background: var(--grad-cta);
  transition: width 0.3s ease-out;
  box-shadow: 0 0 10px rgba(240,168,35,0.65);
}
.bnav-item:hover::before,
.bnav-item.active::before { width: 32px; }
.bnav-icon-wrap {
  width: 33px; height: 33px;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  transition: color 0.25s, filter 0.25s;
}
.bnav-item:hover .bnav-icon-wrap,
.bnav-item.active .bnav-icon-wrap {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(240,168,35,0.65));
}
.bnav-label {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.bnav-item:hover .bnav-label,
.bnav-item.active .bnav-label {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  color: transparent;
}

/* ========== NAV-PLUS → ROTATES TO X WHEN MAIN MENU IS OPEN ========== */
.nav-plus.open {
  transform: rotate(45deg);
  box-shadow:
    0 0 28px rgba(240,168,35,0.65),
    0 0 50px rgba(240,168,35,0.25),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

/* ========== DRAWER OVERLAY ========== */
/* Invisible overlay — still captures click-outside-to-close, but no dimming / blur */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 98;
  pointer-events: none;
}
.drawer-overlay.open {
  pointer-events: auto;
}

/* ========== DRAWER PANEL (shared) ========== */
.drawer {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 390px;
  max-height: 85vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(57,87,181,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(115,103,216,0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,16,40,0.98) 0%, rgba(5,7,23,0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 0.5px solid rgba(100,134,214,0.25);
  border-top: none;
  box-shadow: 0 4px 20px rgba(57,87,181,0.2);
  z-index: 99;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  scrollbar-width: none;
}
.drawer::-webkit-scrollbar { display: none; }
.drawer.open {
  transform: translateX(-50%) translateY(0);
}

/* ========== DRAWER HEADER ========== */
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 0.5px solid rgba(100,134,214,0.18);
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, rgba(13,16,40,0.95) 0%, rgba(13,16,40,0.8) 100%);
  backdrop-filter: blur(10px);
  z-index: 2;
  cursor: pointer;
  user-select: none;
}
.drawer-head:hover .drawer-close {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.4);
}
.drawer-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.drawer-close {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(100,134,214,0.15) 0%, rgba(57,87,181,0.08) 100%);
  border: 0.5px solid rgba(100,134,214,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
  pointer-events: none; /* whole header handles the click in main/simple drawers */
}
/* In prize-drawer the close button itself is the click target — re-enable + hover */
.prize-head .drawer-close {
  pointer-events: auto;
}
.prize-head .drawer-close:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(240,168,35,0.18) 0%, rgba(240,168,35,0.06) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.28);
}

/* ========== MAIN MENU SECTIONS ========== */
.menu-section {
  border-bottom: 0.5px solid rgba(100,134,214,0.12);
}
.menu-section:last-child { border-bottom: none; }

.menu-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.menu-section-head:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(100,134,214,0.06) 50%, transparent 100%);
}
.menu-section-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-section-title svg {
  color: var(--gold-soft);
  flex-shrink: 0;
}
.menu-section-chev {
  width: 22px; height: 22px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(240,168,35,0.14) 0%, rgba(240,168,35,0.04) 100%);
  border: 0.5px solid rgba(240,168,35,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold-soft);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s, border-color 0.2s;
}
.menu-section-head.open .menu-section-chev {
  transform: rotate(180deg);
  background: linear-gradient(135deg, rgba(240,168,35,0.25) 0%, rgba(240,168,35,0.1) 100%);
  border-color: rgba(240,168,35,0.5);
  color: var(--gold-bright);
}

/* SUBMENU (collapsible) */
.menu-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(5,7,23,0.4);
}
.menu-sub.open {
  grid-template-rows: 1fr;
}
.menu-sub-inner {
  overflow: hidden;
  min-height: 0;
}
.menu-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 6px 14px 14px;
}
.menu-sub-item {
  padding: 10px 12px;
  font-size: 12px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  overflow: hidden;
}
/* Casino-guides / simple-menu style: gold bar grows from the left on hover */
.menu-sub-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  border-radius: 0 2px 2px 0;
  background: var(--grad-cta);
  transition: height 0.3s ease-out;
  box-shadow: 0 0 12px rgba(240,168,35,0.455);
}
.menu-sub-item:hover {
  color: var(--gold-bright);
}
.menu-sub-item:hover::before { height: 70%; }

/* ========== SECONDARY MENU (☰) — simple link list ========== */
.simple-menu {
  /* no outer padding — every item has identical 14px padding, so sizes match */
  padding: 0;
}
.simple-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 4px 12px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  border: 0.5px solid transparent;
  border-radius: 10px;
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
}
.simple-menu-item:hover {
  border-color: rgba(240,168,35,0.55);
  background: linear-gradient(135deg, rgba(240,168,35,0.07) 0%, rgba(240,168,35,0.02) 100%);
  box-shadow: 0 0 14px rgba(240,168,35,0.18);
  color: var(--gold-bright);
}
.simple-menu-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-soft);
  flex-shrink: 0;
  transition: color 0.2s;
}
.simple-menu-item:hover .simple-menu-icon {
  color: var(--gold-bright);
}
.simple-menu-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.simple-menu-arrow {
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}
.simple-menu-item:hover .simple-menu-arrow {
  color: var(--gold-bright);
  transform: translateX(2px);
}
/* ========== PRIZE DROPDOWN — bonus list ========== */
.prize-drawer {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 390px;
  max-height: 80vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(57,87,181,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(240,168,35,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,16,40,0.98) 0%, rgba(5,7,23,0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 0.5px solid rgba(240,168,35,0.35);
  border-top: none;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 8px 30px rgba(240,168,35,0.2);
  z-index: 99;
  overflow-y: auto;
  scrollbar-width: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.prize-drawer::-webkit-scrollbar { display: none; }
.prize-drawer.open {
  transform: translateX(-50%) translateY(0);
}
.prize-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 0.5px solid rgba(100,134,214,0.18);
  position: sticky; top: 0;
  background: linear-gradient(180deg, rgba(13,16,40,0.96) 0%, rgba(13,16,40,0.82) 100%);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.prize-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.prize-list {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prize-bonus-row {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 13px;
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.4);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.prize-bonus-row::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0; border-radius: 0 2px 2px 0;
  background: var(--grad-cta);
  transition: height 0.3s ease-out;
  box-shadow: 0 0 12px rgba(240,168,35,0.455);
}
.prize-bonus-row:hover::before { height: 70%; }
.prize-bonus-row:hover { border-color: rgba(240,168,35,0.65); }
.prize-bonus-logo {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 0.5px solid rgba(100,134,214,0.25);
}
.prize-bonus-info {
  flex: 1; min-width: 0;
}
.prize-bonus-name {
  font-size: 13px; font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.prize-bonus-amount {
  font-size: 11px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}
.prize-bonus-cta {
  font-family: var(--font-sans);
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(240,168,35,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
/* ========== COMPARE DRAWER ========== */
.compare-drawer {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: 390px;
  max-height: 88vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(57,87,181,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(240,168,35,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,16,40,0.98) 0%, rgba(5,7,23,0.98) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  border: 0.5px solid rgba(240,168,35,0.35);
  border-top: none;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 8px 30px rgba(240,168,35,0.2);
  z-index: 99;
  overflow-y: auto;
  scrollbar-width: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.compare-drawer::-webkit-scrollbar { display: none; }
.compare-drawer.open {
  transform: translateX(-50%) translateY(0);
}
.compare-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 0.5px solid rgba(100,134,214,0.18);
  position: sticky; top: 0;
  background: linear-gradient(180deg, rgba(13,16,40,0.96) 0%, rgba(13,16,40,0.82) 100%);
  backdrop-filter: blur(10px);
  z-index: 3;
}
.compare-head .drawer-close { pointer-events: auto; }
.compare-head .drawer-close:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(240,168,35,0.18) 0%, rgba(240,168,35,0.06) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.28);
}
.compare-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

/* Slider filters block */
.compare-filters {
  padding: 14px 16px 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
  position: sticky;
  top: 56px;
  background: linear-gradient(180deg, rgba(13,16,40,0.96) 0%, rgba(13,16,40,0.88) 100%);
  backdrop-filter: blur(10px);
  z-index: 2;
  border-bottom: 0.5px solid rgba(240,168,35,0.15);
}
.compare-reset {
  grid-column: 1 / -1;
  padding: 9px 0;
  margin-top: 4px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(18,26,51,0.7) 0%, rgba(12,18,38,0.65) 100%);
  border: 0.5px solid rgba(255,255,255,0.35);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.compare-reset:hover {
  color: var(--gold-bright);
  border-color: rgba(240,168,35,0.65);
  background: linear-gradient(135deg, rgba(18,26,51,0.85) 0%, rgba(12,18,38,0.75) 100%);
  box-shadow: 0 0 12px rgba(240,168,35,0.22);
}
.compare-filter {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.compare-filter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.compare-filter-label {
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.compare-filter-value {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

/* Custom range slider */
.compare-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    rgba(240,168,35,0.9) 0%,
    rgba(240,168,35,0.9) var(--p, 0%),
    rgba(100,134,214,0.25) var(--p, 0%),
    rgba(100,134,214,0.25) 100%
  );
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  margin: 0;
}
.compare-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-cta);
  cursor: pointer;
  border: 0.5px solid rgba(240,168,35,0.7);
  box-shadow:
    0 0 10px rgba(240,168,35,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s;
}
.compare-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.compare-slider:active::-webkit-slider-thumb { transform: scale(1.2); }
.compare-slider::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #f0a823;
  cursor: pointer;
  border: 0.5px solid rgba(240,168,35,0.7);
  box-shadow:
    0 0 10px rgba(240,168,35,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.compare-slider::-moz-range-track {
  background: transparent;
  height: 4px;
}

/* Empty state */
.compare-empty {
  padding: 32px 20px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}
.compare-empty strong {
  color: var(--gold-soft);
  font-weight: 600;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

/* Casino comparison cards */
.compare-list {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare-card {
  background: var(--grad-card);
  border: 0.5px solid rgba(240,168,35,0.4);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.compare-card.best {
  border-color: rgba(240,168,35,0.7);
  background:
    linear-gradient(135deg, rgba(240,168,35,0.07) 0%, transparent 60%),
    var(--grad-card);
  box-shadow: 0 0 20px rgba(240,168,35,0.18);
}
.compare-badge {
  font-family: var(--font-sans);
  position: absolute;
  top: 0; right: 14px;
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 2px 8px rgba(240,168,35,0.4);
}
.compare-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.compare-logo {
  width: 44px; height: 44px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 0.5px solid rgba(100,134,214,0.25);
}
.compare-info { flex: 1; min-width: 0; }
.compare-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 3px;
}
.compare-stars {
  font-size: 12px;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1.2px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.compare-stat {
  background: rgba(18,26,51,0.5);
  border: 0.5px solid rgba(100,134,214,0.18);
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.compare-stat-label {
  font-size: 9px;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.compare-stat-value {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}

/* Active filter highlight — slider being dragged glows matching stat */
.compare-list.hl-bonus    .compare-stat[data-stat="bonus"],
.compare-list.hl-deposit  .compare-stat[data-stat="deposit"],
.compare-list.hl-spins    .compare-stat[data-stat="spins"],
.compare-list.hl-wagering .compare-stat[data-stat="wagering"] {
  background: linear-gradient(135deg, rgba(240,168,35,0.28) 0%, rgba(240,168,35,0.1) 100%);
  border-color: rgba(240,168,35,0.65);
  box-shadow: 0 0 12px rgba(240,168,35,0.32);
}

.compare-cta {
  font-family: var(--font-sans);
  width: 100%;
  padding: 10px 0;
  border-radius: 9px;
  background: var(--grad-cta);
  color: #0a0e20;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(240,168,35,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
}
.compare-cta:active {
  transform: translateY(2px) scale(0.98);
  box-shadow:
    0 1px 3px rgba(240,168,35,0.22),
    inset 0 2px 6px rgba(0,0,0,0.32);
}