:root {
  --bg: #0a0f1c;
  --bg-2: #0f1626;
  --bg-3: #141d32;
  --card: #172237;
  --card-2: #1d2a44;
  --border: #253353;
  --text: #e6ebf5;
  --muted: #9aa7c2;
  --gold: #f5b942;
  --gold-2: #ffd473;
  --green: #2ecc71;
  --green-2: #27ae60;
  --orange: #ff8a3d;
  --accent: #6ee7b7;
  --danger: #ef4444;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --glow: 0 0 24px rgba(245,185,66,.25);
}

/* =============================================
   GLOBAL THEME TOKENS — Light Mode (default)
   ============================================= */
:root,
:root[data-theme="light"] {
  --bg: #F7F8FC;
  --bg-2: #EEF1F8;
  --bg-3: #E4E9F4;
  --card: #ffffff;
  --card-2: #F5F7FC;
  --border: #E1E6F0;
  --text: #1F2937;
  --muted: #6B7280;

  --gold: #F59E0B;
  --gold-2: #D97706;
  --green: #22C55E;
  --green-2: #16A34A;
  --orange: #F97316;
  --accent: #4F46E5;
  --danger: #EF4444;

  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --glow: 0 6px 24px rgba(79, 70, 229, 0.15);

  --tl-bg-start: #F8FAFC;
  --tl-bg-end: #EEF2FF;
  --tl-card-bg: #ffffff;
  --tl-card-border: #e5e7eb;
  --tl-card-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  --tl-card-shadow-hover: 0 18px 40px rgba(79, 70, 229, 0.18);
  --tl-text: #1F2937;
  --tl-text-muted: #6B7280;
  --tl-primary: #4F46E5;
  --tl-secondary: #10B981;
  --tl-cta: #22C55E;
  --tl-cta-hover: #16A34A;
  --tl-divider: #eef0f5;
  --tl-chip-bg: rgba(79, 70, 229, 0.08);
  --tl-chip-text: #4F46E5;
  --tl-star: #F59E0B;
  --tl-bonus-bg: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  --tl-bonus-text: #92400E;

  --header-bg: rgba(255,255,255,0.85);
  --header-border: #E1E6F0;
  --hero-bg:
    radial-gradient(1000px 500px at 80% -10%, rgba(249,115,22,.12), transparent 60%),
    radial-gradient(800px 400px at 10% 10%, rgba(79,70,229,.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FC 100%);
  --footer-bg: #0F172A;
  --footer-text: #E5E7EB;
}

/* =============================================
   DARK MODE
   ============================================= */
:root[data-theme="dark"] {
  --bg: #0B0714;
  --bg-2: #120B20;
  --bg-3: #1A0F2E;
  --card: rgba(30, 20, 50, 0.55);
  --card-2: rgba(40, 25, 65, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --text: #F1EEF8;
  --muted: #B5ADC8;

  --gold: #FF8A3D;
  --gold-2: #FFB06B;
  --green: #34D399;
  --green-2: #10B981;
  --orange: #FF6A00;
  --accent: #A78BFA;
  --danger: #F87171;

  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --glow: 0 0 40px rgba(167, 139, 250, 0.28);

  --tl-bg-start: #0B0714;
  --tl-bg-end: #160A2A;
  --tl-card-bg: linear-gradient(135deg, rgba(35, 20, 60, 0.65) 0%, rgba(22, 12, 38, 0.6) 100%);
  --tl-card-border: rgba(255, 255, 255, 0.1);
  --tl-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  --tl-card-shadow-hover: 0 20px 50px rgba(255, 138, 61, 0.25), 0 0 30px rgba(167, 139, 250, 0.2);
  --tl-text: #F1EEF8;
  --tl-text-muted: #B5ADC8;
  --tl-primary: #A78BFA;
  --tl-secondary: #FF8A3D;
  --tl-cta: #FF8A3D;
  --tl-cta-hover: #FF6A00;
  --tl-divider: rgba(255, 255, 255, 0.08);
  --tl-chip-bg: rgba(167, 139, 250, 0.15);
  --tl-chip-text: #C4B5FD;
  --tl-star: #FBBF24;
  --tl-bonus-bg: linear-gradient(135deg, rgba(255, 138, 61, 0.18) 0%, rgba(167, 139, 250, 0.15) 100%);
  --tl-bonus-text: #FFB06B;

  --header-bg: rgba(18, 11, 32, 0.65);
  --header-border: rgba(255, 255, 255, 0.08);
  --hero-bg:
    radial-gradient(1200px 600px at 80% -10%, rgba(255, 138, 61, 0.22), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(167, 139, 250, 0.22), transparent 60%),
    radial-gradient(700px 400px at 50% 100%, rgba(255, 106, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #0B0714 0%, #160A2A 100%);
  --footer-bg: #07040E;
  --footer-text: #B5ADC8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body, .site-header, .age-bar, .hero, .section, .section-alt, .section-toplist,
.section-responsible, .site-footer, .brand-card, .feature-card, .review-card,
.payment-card, .license-card, .responsible-card, .faq details, .review-sidebar,
.proscons div, .contact-info, .contact-form input, .contact-form textarea,
.contact-form select, .page-hero, .review-hero, .footer-disclaimer,
.affiliate-note, .theme-toggle, .btn, .btn-ghost, .btn-primary, .brand-logo,
.review-logo, .resource, .footer-badge {
  transition:
    background-color 0.5s ease,
    background 0.5s ease,
    color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
:root[data-theme="dark"] a { color: var(--gold-2); }
:root[data-theme="dark"] a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 22px; }

.age-bar {
  background: linear-gradient(90deg, #EEF2FF, #F7F8FC);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 8px 14px;
}
:root[data-theme="dark"] .age-bar {
  background: linear-gradient(90deg, rgba(167,139,250,0.12), rgba(255,138,61,0.08));
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--header-border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); }
.logo-mark {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: linear-gradient(135deg, #F97316, #4F46E5);
  border-radius: 9px; color: #fff; font-weight: 900;
  box-shadow: 0 6px 16px rgba(79,70,229,0.3);
}
:root[data-theme="dark"] .logo-mark {
  background: linear-gradient(135deg, #FF8A3D, #A78BFA);
  box-shadow: 0 0 20px rgba(255,138,61,0.4), 0 0 30px rgba(167,139,250,0.3);
}
.logo-text { letter-spacing: .2px; }
.logo-accent { color: var(--accent); font-weight: 500; }
:root[data-theme="dark"] .logo-accent { color: var(--gold); }

.main-nav ul {
  display: flex; gap: 4px; list-style: none;
}
.main-nav a {
  color: var(--text); padding: 10px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--tl-chip-bg); color: var(--accent);
}
:root[data-theme="dark"] .main-nav a:hover,
:root[data-theme="dark"] .main-nav a.active {
  background: rgba(255,255,255,0.06);
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.menu-toggle { display: none; }
.menu-icon { display: none; cursor: pointer; padding: 8px; }
.menu-icon span {
  display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0;
  transition: .3s;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 70px;
  background: var(--hero-bg);
  overflow: hidden;
}
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-block; padding: 6px 14px;
  background: var(--tl-chip-bg); color: var(--accent);
  border: 1px solid rgba(79,70,229,.25); border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
:root[data-theme="dark"] .hero-badge {
  background: rgba(255,138,61,0.12);
  color: var(--gold);
  border-color: rgba(255,138,61,0.3);
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1; font-weight: 800; margin-bottom: 18px;
  letter-spacing: -.5px;
}
.gold { color: var(--accent); }
:root[data-theme="dark"] .gold {
  background: linear-gradient(135deg, #FF8A3D, #A78BFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--muted); font-size: 18px; max-width: 720px; margin: 0 auto 30px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }

.btn {
  display: inline-block; padding: 14px 24px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer; border: none;
  transition: all .25s ease; text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: #fff;
  box-shadow: 0 8px 20px rgba(79,70,229,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(79,70,229,.45); color: #fff; }
:root[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #FF8A3D, #A78BFA);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,138,61,.35), 0 0 20px rgba(167,139,250,.2);
}
:root[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 14px 32px rgba(255,138,61,.5), 0 0 30px rgba(167,139,250,.35);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
:root[data-theme="dark"] .btn-ghost {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
:root[data-theme="dark"] .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-link {
  background: transparent; color: var(--accent); padding: 10px 0; font-weight: 600;
}
:root[data-theme="dark"] .btn-link { color: var(--gold-2); }

.hero-trust {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 28px; color: var(--accent); font-weight: 800; }
:root[data-theme="dark"] .trust-item strong { color: var(--gold); }
.trust-item span { color: var(--muted); font-size: 14px; }

/* =============================================
   TOPLIST SECTION
   ============================================= */
.section-toplist {
  position: relative;
  padding: 80px 0 90px;
  background: linear-gradient(180deg, var(--tl-bg-start) 0%, var(--tl-bg-end) 100%);
  color: var(--tl-text);
  overflow: hidden;
}
.section-toplist::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.section-toplist::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.10) 0%, transparent 70%);
  pointer-events: none;
}
:root[data-theme="dark"] .section-toplist::before {
  background: radial-gradient(circle, rgba(167,139,250,0.22) 0%, transparent 70%);
  width: 600px; height: 600px;
}
:root[data-theme="dark"] .section-toplist::after {
  background: radial-gradient(circle, rgba(255,138,61,0.18) 0%, transparent 70%);
  width: 600px; height: 600px;
}

.section-toplist .container { position: relative; z-index: 1; }

.section-toplist .section-head h2,
.section-toplist .section-head p {
  color: var(--tl-text);
}
.section-toplist .section-head p { color: var(--tl-text-muted); }

.toplist-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.toplist-header .section-head { margin-bottom: 0; }

.theme-toggle-wrap { flex-shrink: 0; padding-top: 6px; }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tl-card-bg);
  border: 1px solid var(--tl-card-border);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  box-shadow: var(--tl-card-shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.theme-toggle:hover { transform: translateY(-1px); box-shadow: var(--tl-card-shadow-hover); }
.theme-toggle-track {
  position: relative;
  width: 52px; height: 28px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
  border-radius: 999px;
  transition: background 0.5s ease;
  flex-shrink: 0;
}
:root[data-theme="dark"] .theme-toggle-track {
  background: linear-gradient(135deg, #FF8A3D, #A78BFA);
  box-shadow: 0 0 16px rgba(167,139,250,0.4);
}
.theme-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.5s cubic-bezier(.4,.1,.3,1.4), background 0.4s ease;
}
:root[data-theme="dark"] .theme-toggle-thumb { transform: translateX(24px); background: #1A0F2E; }
.theme-icon-sun, .theme-icon-moon { position: absolute; transition: opacity 0.4s ease, transform 0.4s ease; line-height: 1; }
.theme-icon-moon { opacity: 0; transform: rotate(-90deg); }
:root[data-theme="dark"] .theme-icon-sun { opacity: 0; transform: rotate(90deg); }
:root[data-theme="dark"] .theme-icon-moon { opacity: 1; transform: rotate(0); }
.theme-toggle-label { font-size: 13px; font-weight: 600; color: var(--tl-text); letter-spacing: .3px; }

/* =============================================
   BRAND CARD — STRICT SINGLE-ROW FLEXBOX LAYOUT
   ============================================= */
.brand-grid {
  display: grid;
  gap: 14px;
}

.brand-card {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  background: var(--tl-card-bg);
  border: 1px solid var(--tl-card-border);
  border-radius: 16px;
  box-shadow: var(--tl-card-shadow);
  overflow: hidden;
  min-height: 130px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
:root[data-theme="dark"] .brand-card {
  background: linear-gradient(135deg, rgba(35, 20, 60, 0.55) 0%, rgba(22, 12, 38, 0.5) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}
.brand-card:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: var(--tl-card-shadow-hover);
  border-color: rgba(79, 70, 229, 0.3);
}
:root[data-theme="dark"] .brand-card:hover {
  border-color: rgba(255, 138, 61, 0.4);
  box-shadow:
    0 24px 56px rgba(255, 138, 61, 0.25),
    0 0 48px rgba(167, 139, 250, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.brand-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}
:root[data-theme="dark"] .brand-card-shine {
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
}
.brand-card:hover .brand-card-shine {
  transform: translateX(100%);
}

.brand-card > * { position: relative; z-index: 1; }

/* [1] LOGO + TRUST BLOCK */
.bc-logo {
  flex: 0 0 140px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
}
.bc-logo .brand-logo {
  width: 100%;
  max-width: 140px;
  height: 64px;
  font-size: 18px;
  border-radius: 12px;
}
.bc-license {
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .3px;
  white-space: nowrap;
}
:root[data-theme="dark"] .bc-license {
  color: #34D399;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

/* [2] RATING BLOCK */
.bc-rating {
  flex: 0 0 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  padding: 0 14px;
  border-left: 1px solid var(--tl-divider);
  border-right: 1px solid var(--tl-divider);
  align-self: stretch;
  min-width: 0;
}
.bc-stars {
  color: var(--tl-star);
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1;
}
.bc-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--tl-text);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.bc-score span {
  font-size: 12px;
  font-weight: 600;
  color: var(--tl-text-muted);
  margin-left: 1px;
}
.bc-score-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--tl-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* [3] BONUS + PAYMENTS BLOCK */
.bc-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 8px;
}
.bc-bonus-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--tl-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1;
}
.bc-bonus-value {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.3px;
  background: var(--tl-bonus-bg);
  color: var(--tl-bonus-text);
  padding: 7px 12px;
  border-radius: 10px;
  display: inline-block;
  align-self: flex-start;
  max-width: 100%;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.14);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
:root[data-theme="dark"] .bc-bonus-value {
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.22) 0%, rgba(167, 139, 250, 0.18) 100%);
  color: #FFB06B;
  border: 1px solid rgba(255, 138, 61, 0.3);
  box-shadow: 0 0 20px rgba(255, 138, 61, 0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.bc-bonus-sub {
  font-size: 11.5px;
  color: var(--tl-text-muted);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =============================================
   PAYMENT STRIP
   ============================================= */
.bc-payments-strip {
  margin-top: 6px;
  width: 100%;
  max-width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3px 8px;
  background: linear-gradient(180deg, rgba(15,23,42,0.025) 0%, rgba(15,23,42,0.06) 100%);
  border: 1px solid var(--tl-divider);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
}
.bc-payments-strip svg {
  width: 100%;
  height: 100%;
  max-height: 26px;
  display: block;
  overflow: visible;
}
:root[data-theme="dark"] .bc-payments-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.07) 100%);
  border-color: rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.25);
}
:root[data-theme="dark"] .bc-payments-strip svg {
  filter: brightness(1.06) saturate(1.05);
}

/* [4] CTA BLOCK */
.bc-cta {
  flex: 0 0 200px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  justify-content: center;
  padding-left: 12px;
  border-left: 1px solid var(--tl-divider);
  align-self: stretch;
}
.btn-play-now {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.38), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.btn-play-now::after {
  content: "→";
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.3s ease;
}
.btn-play-now:hover::after {
  transform: translateX(4px);
}
:root[data-theme="dark"] .btn-play-now {
  background: linear-gradient(135deg, #FF8A3D 0%, #A78BFA 100%);
  box-shadow:
    0 10px 28px rgba(255, 138, 61, 0.4),
    0 0 28px rgba(167, 139, 250, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-play-now::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.4) 45%, rgba(255,255,255,0) 55%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn-play-now:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.5), 0 0 0 4px rgba(34, 197, 94, 0.15), inset 0 1px 0 rgba(255,255,255,0.35);
  color: #fff;
}
:root[data-theme="dark"] .btn-play-now:hover {
  box-shadow:
    0 18px 40px rgba(255, 138, 61, 0.55),
    0 0 44px rgba(167, 139, 250, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-play-now:hover::before { transform: translateX(100%); }

.bc-review-link {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--tl-primary);
  transition: color 0.3s ease, transform 0.25s ease;
  padding: 2px 0;
}
.bc-review-link:hover {
  color: var(--tl-primary);
  transform: translateX(2px);
}

.section-toplist .affiliate-note {
  margin-top: 32px;
  background: var(--tl-card-bg);
  border: 1px solid var(--tl-card-border);
  color: var(--tl-text-muted);
  border-radius: 14px;
  box-shadow: var(--tl-card-shadow);
}
:root[data-theme="dark"] .section-toplist .affiliate-note {
  background: linear-gradient(135deg, rgba(35, 20, 60, 0.5) 0%, rgba(22, 12, 38, 0.45) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.section-toplist .affiliate-note strong { color: var(--tl-primary); }

.affiliate-note {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(79,70,229,.06); border: 1px solid rgba(79,70,229,.18);
  border-radius: 10px; font-size: 14px; color: var(--muted);
}
:root[data-theme="dark"] .affiliate-note {
  background: rgba(167,139,250,.08);
  border-color: rgba(167,139,250,.2);
  backdrop-filter: blur(10px);
}

/* Sections */
.section { padding: 80px 0; background: var(--bg); }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: 40px; max-width: 720px; }
.section-head.center { margin: 0 auto 40px; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px;
}
.section-head p { color: var(--muted); font-size: 17px; }
.eyebrow {
  color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
}
:root[data-theme="dark"] .eyebrow { color: var(--gold); }
.section-head h2, .two-col h2 { line-height: 1.15; }

/* BRAND LOGOS */
.brand-logo {
  width: 120px;
  height: 64px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 19px;
  color: #fff;
  letter-spacing: .4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 16px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(0,0,0,.25);
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  isolation: isolate;
  flex-shrink: 0;
}
.brand-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 45%,
    rgba(255,255,255,0) 55%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.brand-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.22);
  pointer-events: none;
  z-index: 2;
}
.brand-card:hover .brand-logo,
.review-card:hover .brand-logo {
  transform: translateY(-1px) scale(1.04);
  box-shadow:
    0 12px 28px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -2px 0 rgba(0,0,0,.28);
  filter: saturate(1.1);
}
.brand-888 {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.2), transparent 45%),
    linear-gradient(135deg, #ff7a1a 0%, #ff4500 55%, #b82e00 100%);
}
.brand-betano {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.3), transparent 50%),
    linear-gradient(135deg, #ffb347 0%, #ff8a3d 50%, #ff6a00 100%);
  color: #0a0f1c;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
}
.brand-bacanaplay {
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.28), transparent 50%),
    linear-gradient(135deg, #ff4ea8 0%, #b026d6 55%, #5a14a8 100%);
}

.license { font-size: 11px; color: var(--green); font-weight: 600; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }

.pay {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 5px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.pay-mbway { background: #e30613; }
.pay-multibanco { background: #003d7a; }
.pay-visa { background: #1a1f71; }
.pay-skrill { background: #7c1fa2; }
.pay-neteller { background: #00ac41; }

/* Feature grid */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px; transition: transform .2s, border-color .2s, box-shadow .3s;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .feature-card {
  background: linear-gradient(135deg, rgba(35,20,60,0.55), rgba(22,12,38,0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(79,70,229,.35); }
:root[data-theme="dark"] .feature-card:hover { border-color: rgba(255,138,61,.35); box-shadow: 0 18px 40px rgba(167,139,250,.2); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); }

/* Two column */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.two-col h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin: 8px 0 16px; }
.two-col p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.check-list { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.check-list li { padding-left: 28px; position: relative; color: var(--muted); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
  background: rgba(79,70,229,.1); width: 20px; height: 20px;
  border-radius: 50%; display: grid; place-items: center; font-size: 12px;
}
:root[data-theme="dark"] .check-list li::before {
  color: var(--gold);
  background: rgba(255,138,61,.15);
}

.license-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid rgba(79,70,229,.25);
  border-radius: var(--radius); padding: 36px;
  box-shadow: var(--glow);
}
:root[data-theme="dark"] .license-card {
  background: linear-gradient(135deg, rgba(255,138,61,0.1), rgba(167,139,250,0.08));
  border-color: rgba(255,138,61,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(167,139,250,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.license-badge {
  background: linear-gradient(135deg, #4F46E5, #F97316);
  color: #fff; font-weight: 900; font-size: 18px;
  padding: 8px 18px; border-radius: 8px; display: inline-block; margin-bottom: 18px;
}
:root[data-theme="dark"] .license-badge {
  background: linear-gradient(135deg, #FF8A3D, #A78BFA);
  box-shadow: 0 0 24px rgba(255,138,61,0.3);
}
.license-card h3 { font-size: 22px; margin-bottom: 10px; }
.license-card > p { color: var(--muted); margin-bottom: 20px; }
.license-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; color: var(--green); font-weight: 600; font-size: 14px; }
:root[data-theme="dark"] .license-list { color: #34D399; }

/* Payments grid */
.payment-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.payment-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: transform .2s, border-color .2s;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .payment-card {
  background: linear-gradient(135deg, rgba(35,20,60,0.5), rgba(22,12,38,0.45));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.payment-card:hover { transform: translateY(-3px); border-color: var(--accent); }
:root[data-theme="dark"] .payment-card:hover { border-color: var(--gold); }
.payment-logo {
  display: inline-block; padding: 10px 18px; border-radius: 8px;
  font-weight: 800; color: #fff; margin-bottom: 14px; font-size: 14px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
}
.payment-card h4 { font-size: 17px; margin-bottom: 8px; }
.payment-card p { color: var(--muted); font-size: 14px; }

/* Review grid */
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; color: var(--text);
  transition: transform .2s, border-color .2s, box-shadow .3s;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .review-card {
  background: linear-gradient(135deg, rgba(35,20,60,0.55), rgba(22,12,38,0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.review-card:hover {
  transform: translateY(-3px); border-color: rgba(79,70,229,.35);
  box-shadow: 0 16px 40px rgba(79,70,229,0.18); color: var(--text);
}
:root[data-theme="dark"] .review-card:hover {
  border-color: rgba(255,138,61,.35);
  box-shadow: 0 20px 44px rgba(255,138,61,0.2), 0 0 30px rgba(167,139,250,0.18);
}
.review-logo {
  width: 100px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: .4px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 5px 14px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -2px 0 rgba(0,0,0,.22);
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}
.review-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.16) 45%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.review-card h3 { font-size: 18px; margin-bottom: 8px; }
.review-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.review-link { color: var(--accent); font-weight: 700; font-size: 14px; }
:root[data-theme="dark"] .review-link { color: var(--gold); }

/* Responsible */
.section-responsible { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.resource-list { display: grid; gap: 14px; }
.resource {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .resource {
  background: rgba(35,20,60,0.45);
  backdrop-filter: blur(10px);
}
.resource h4 { color: var(--accent); font-size: 15px; margin-bottom: 4px; }
:root[data-theme="dark"] .resource h4 { color: var(--gold); }
.resource p { color: var(--muted); font-size: 14px; margin-bottom: 4px; }
.resource a { font-size: 13px; }

.responsible-card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px; text-align: center;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .responsible-card {
  background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(255,138,61,0.08));
  border-color: rgba(167,139,250,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.age-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  color: #fff; font-weight: 900; font-size: 26px;
  display: grid; place-items: center; margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(239,68,68,.3);
}
.responsible-card h3 { font-size: 22px; margin-bottom: 10px; }
.responsible-card p { color: var(--muted); margin-bottom: 22px; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px 22px;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .faq details {
  background: rgba(35,20,60,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.faq details[open] { border-color: rgba(79,70,229,.35); }
:root[data-theme="dark"] .faq details[open] { border-color: rgba(255,138,61,.4); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 16px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--accent); font-size: 22px; font-weight: 700;
  transition: transform .2s;
}
:root[data-theme="dark"] .faq summary::after { color: var(--gold); }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); margin-top: 12px; font-size: 15px; }

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 0 24px;
  margin-top: 40px;
}
:root[data-theme="dark"] .site-footer {
  background: linear-gradient(180deg, #07040E 0%, #0B0714 100%);
}
.footer-disclaimer {
  background: rgba(79,70,229,.12);
  border: 1px solid rgba(79,70,229,.25);
  color: #CBD2E6; font-size: 14px;
  padding: 16px 20px; border-radius: 10px;
  margin-bottom: 36px;
}
:root[data-theme="dark"] .footer-disclaimer {
  background: rgba(255,138,61,.1);
  border-color: rgba(255,138,61,.25);
  backdrop-filter: blur(10px);
}
.footer-disclaimer strong { color: #FFB06B; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px;
  padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  color: #FFB06B; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: #CBD2E6; font-size: 14px; }
.footer-col a:hover { color: #FFB06B; }
.footer-col p { color: #B5ADC8; font-size: 14px; margin: 14px 0; }
.footer-col .logo { color: #F1EEF8; }
.footer-col address { color: #B5ADC8; font-size: 13px; font-style: normal; line-height: 1.8; }
.footer-col address strong { color: #F1EEF8; }
.footer-badges { display: flex; gap: 8px; margin-top: 14px; }
.footer-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 700;
  color: #CBD2E6;
  backdrop-filter: blur(8px);
}
.footer-compliance {
  padding-top: 24px; text-align: center;
}
.compliance-links { color: #B5ADC8; font-size: 14px; margin-bottom: 10px; }
.compliance-links a { color: #FFB06B; }
.copy { color: #B5ADC8; font-size: 13px; }

/* Review page */
.review-hero {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 60px 0 40px; border-bottom: 1px solid var(--border);
}
:root[data-theme="dark"] .review-hero {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(255,138,61,0.2), transparent 60%),
    radial-gradient(600px 300px at 10% 100%, rgba(167,139,250,0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.review-hero-inner { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.review-hero .brand-logo {
  width: 180px;
  height: 96px;
  font-size: 30px;
  border-radius: 16px;
  box-shadow:
    0 14px 32px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -3px 0 rgba(0,0,0,.28);
}
.review-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 10px; }
.review-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 14px; margin-top: 10px; }
.review-meta span strong { color: var(--accent); }
:root[data-theme="dark"] .review-meta span strong { color: var(--gold); }
.review-body { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.review-body h2 { font-size: 24px; margin: 30px 0 12px; color: var(--accent); }
:root[data-theme="dark"] .review-body h2 { color: var(--gold); }
.review-body h2:first-child { margin-top: 0; }
.review-body p, .review-body ul { color: var(--muted); margin-bottom: 12px; }
.review-body ul { padding-left: 22px; }
.review-sidebar {
  position: sticky; top: 100px; align-self: start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .review-sidebar {
  background: linear-gradient(135deg, rgba(35,20,60,0.55), rgba(22,12,38,0.5));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.review-sidebar h3 { font-size: 18px; margin-bottom: 14px; color: var(--accent); }
:root[data-theme="dark"] .review-sidebar h3 { color: var(--gold); }
.sidebar-list { list-style: none; display: grid; gap: 10px; margin-bottom: 20px; }
.sidebar-list li { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); border-bottom: 1px dashed var(--border); padding-bottom: 6px; }
.sidebar-list li strong { color: var(--text); }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.proscons div {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 18px;
  box-shadow: var(--shadow);
}
:root[data-theme="dark"] .proscons div {
  background: rgba(35,20,60,0.4);
  backdrop-filter: blur(10px);
}
.proscons h4 { margin-bottom: 10px; font-size: 15px; }
.proscons ul { list-style: none; padding: 0; }
.proscons li { padding: 4px 0; font-size: 14px; color: var(--muted); }
.pros-box h4 { color: var(--green); }
.pros-box li::before { content: "✓ "; color: var(--green); font-weight: 700; }
.cons-box h4 { color: var(--orange); }
.cons-box li::before { content: "✗ "; color: var(--orange); font-weight: 700; }

/* Legal pages */
.page-hero {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 60px 0 40px; border-bottom: 1px solid var(--border);
}
:root[data-theme="dark"] .page-hero {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(167,139,250,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.page-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 760px; }
.page-body { padding: 50px 0; max-width: 820px; margin: 0 auto; }
.page-body h2 { font-size: 22px; margin: 30px 0 12px; color: var(--accent); }
:root[data-theme="dark"] .page-body h2 { color: var(--gold); }
.page-body h3 { font-size: 18px; margin: 20px 0 10px; }
.page-body p, .page-body ul, .page-body ol { color: var(--muted); margin-bottom: 14px; }
.page-body ul, .page-body ol { padding-left: 22px; }
.page-body a { color: var(--accent); }
:root[data-theme="dark"] .page-body a { color: var(--gold-2); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 0; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; color: var(--muted); font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 12px 14px; border-radius: 8px; font-size: 15px; font-family: inherit;
}
:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form textarea,
:root[data-theme="dark"] .contact-form select {
  background: rgba(35,20,60,0.4);
  backdrop-filter: blur(10px);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
:root[data-theme="dark"] .contact-form input:focus,
:root[data-theme="dark"] .contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,138,61,0.15);
}
.contact-info { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
:root[data-theme="dark"] .contact-info {
  background: linear-gradient(135deg, rgba(35,20,60,0.55), rgba(22,12,38,0.5));
  backdrop-filter: blur(14px);
}
.contact-info h3 { color: var(--accent); margin-bottom: 16px; }
:root[data-theme="dark"] .contact-info h3 { color: var(--gold); }
.contact-info p { color: var(--muted); font-size: 15px; margin-bottom: 10px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .brand-card {
    gap: 16px;
    padding: 20px;
  }
  .bc-logo { flex: 0 0 130px; }
  .bc-logo .brand-logo { max-width: 130px; height: 60px; font-size: 17px; }
  .bc-rating { flex: 0 0 110px; padding: 0 10px; }
  .bc-score { font-size: 25px; }
  .bc-bonus-value { font-size: 18px; padding: 6px 10px; }
  .bc-cta { flex: 0 0 180px; padding-left: 10px; }
  .btn-play-now { padding: 14px 16px; font-size: 13px; letter-spacing: .4px; }
  .bc-payments-strip { height: 30px; }
}

@media (max-width: 900px) {
  .brand-card {
    gap: 12px;
    padding: 16px;
    min-height: 120px;
  }
  .bc-logo { flex: 0 0 110px; }
  .bc-logo .brand-logo { max-width: 110px; height: 54px; font-size: 15px; }
  .bc-license { font-size: 9px; padding: 3px 8px; }
  .bc-rating { flex: 0 0 95px; padding: 0 8px; }
  .bc-stars { font-size: 11px; letter-spacing: 1.5px; }
  .bc-score { font-size: 22px; }
  .bc-score-label { font-size: 9px; }
  .bc-bonus-value { font-size: 16px; padding: 5px 9px; }
  .bc-bonus-sub { font-size: 10.5px; }
  .bc-payments-strip { height: 28px; padding: 2px 6px; }
  .bc-cta { flex: 0 0 160px; padding-left: 8px; gap: 6px; }
  .btn-play-now { padding: 12px 10px; font-size: 11px; gap: 5px; }
  .btn-play-now::after { font-size: 13px; }
  .bc-review-link { font-size: 10.5px; }
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-body { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .menu-icon { display: block; }
  .main-nav ul {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: var(--header-bg); border-top: 1px solid var(--border);
    padding: 12px; gap: 2px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .menu-toggle:checked ~ ul { display: flex; }

  .toplist-header { flex-direction: column; align-items: stretch; }
  .theme-toggle-wrap { align-self: flex-end; }

  .brand-card {
    flex-wrap: wrap;
    gap: 14px 16px;
    padding: 20px;
    min-height: auto;
  }
  .bc-logo {
    flex: 0 0 auto;
    align-items: flex-start;
  }
  .bc-logo .brand-logo { max-width: 120px; height: 56px; font-size: 15px; }
  .bc-rating {
    flex: 1 1 auto;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    border: none;
    flex-wrap: wrap;
  }
  .bc-stars { font-size: 13px; letter-spacing: 2px; }
  .bc-score { font-size: 22px; }
  .bc-score-label { display: none; }

  .bc-info {
    flex: 1 1 100%;
    align-items: stretch;
    text-align: left;
    padding: 14px 0;
    border-top: 1px solid var(--tl-divider);
    border-bottom: 1px solid var(--tl-divider);
    gap: 8px;
  }
  .bc-bonus-value { font-size: 19px; align-self: flex-start; padding: 7px 12px; white-space: normal; }
  .bc-bonus-sub { font-size: 12px; white-space: normal; }
  .bc-payments-strip { max-width: 100%; height: 32px; margin-top: 4px; padding: 3px 8px; }

  .bc-cta {
    flex: 1 1 100%;
    flex-direction: column;
    width: 100%;
    padding-left: 0;
    border-left: none;
    gap: 10px;
  }
  .btn-play-now {
    padding: 16px 20px;
    font-size: 14px;
    letter-spacing: .6px;
    gap: 8px;
  }
  .btn-play-now::after { font-size: 16px; }
  .bc-review-link { font-size: 13px; }

  .grid-3 { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-trust { gap: 24px; }
  .section { padding: 56px 0; }
  .proscons { grid-template-columns: 1fr; }
  .review-hero .brand-logo { width: 140px; height: 76px; font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}