/* =============================================
   KAASINO V2 — Full-width, Split Hero
   #0F0F0F bg | #F7D046 gold | #FF8C00 orange
   Article centered max-w-1100 | NL geo
   ============================================= */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:       #0F0F0F;
  --bg2:      #161616;
  --bg3:      #1E1E1E;
  --bg4:      #252525;
  --card:     #1A1A1A;

  --gold:     #F7D046;
  --gold-lt:  #FFE566;
  --gold-dk:  #D4A800;
  --orange:   #FF8C00;
  --orange-lt:#FFA333;
  --yglow:    rgba(247,208,70,0.12);
  --oglow:    rgba(255,140,0,0.12);
  --green:    #22C55E;
  --red:      #EF4444;

  --text:     #FFFFFF;
  --text-md:  rgba(255,255,255,0.72);
  --text-dim: rgba(255,255,255,0.38);
  --border:   rgba(255,255,255,0.07);
  --border-y: rgba(247,208,70,0.22);
  --border-o: rgba(255,140,0,0.22);

  --header-h: 68px;
  --max-w:    1100px;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
  --sh-card:   0 4px 20px rgba(0,0,0,0.55);
  --sh-gold:   0 0 24px rgba(247,208,70,0.2);
  --sh-orange: 0 0 24px rgba(255,140,0,0.2);
  --sh-btn:    0 4px 16px rgba(247,208,70,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img, svg { display: block; max-width: 100%; height: auto; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.8); }

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 20px; }

.logo-link { flex-shrink: 0; display: flex; align-items: center; transition: opacity var(--tr); }
.logo-link:hover { opacity: 0.85; }
.logo-link img { height: 40px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a {
  font-size: 13px; font-weight: 500; color: var(--text-md);
  padding: 6px 12px; border-radius: var(--r-xs); transition: all var(--tr);
}
.header-nav a:hover { color: var(--gold); background: var(--yglow); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
  margin-left: auto;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(15,15,15,0.99);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px 18px; z-index: 99;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; list-style: none; padding: 0; }
.mobile-nav ul a { display: block; font-size: 14px; font-weight: 500; color: var(--text-md); padding: 10px 12px; border-radius: var(--r-xs); transition: all var(--tr); }
.mobile-nav ul a:hover { color: var(--gold); background: var(--yglow); }
.mobile-nav-btns { display: flex; gap: 8px; }
.mobile-nav-btns .btn { flex: 1; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; font-family: var(--font-b); font-weight: 700;
  font-size: 13px; padding: 10px 20px; border-radius: var(--r-sm);
  border: none; cursor: pointer; transition: all var(--tr);
  white-space: nowrap; text-decoration: none !important;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000 !important; font-weight: 800; box-shadow: var(--sh-btn);
  animation: pulse-g 2.5s ease-in-out infinite;
}
.btn-gold:hover, .btn-gold:visited, .btn-gold:active {
  color: #000 !important; background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  animation: none; box-shadow: 0 6px 24px rgba(247,208,70,0.5); transform: translateY(-1px);
}
@keyframes pulse-g { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #cc6600);
  color: #fff !important; font-weight: 800; box-shadow: var(--sh-orange);
}
.btn-orange:hover { background: linear-gradient(135deg, var(--orange-lt), var(--orange)); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text) !important; border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; background: var(--yglow); }

.btn-outline-gold { background: transparent; color: var(--gold) !important; border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--yglow); box-shadow: var(--sh-gold); }

.btn-sm  { font-size: 12px; padding: 7px 14px; border-radius: var(--r-xs); }
.btn-lg  { font-size: 14px; padding: 12px 28px; border-radius: var(--r-md); }
.btn-xl  { font-size: 16px; padding: 15px 36px; border-radius: var(--r-md); }
.btn-full { width: 100%; }

/* =============================================
   HERO — split layout
   ============================================= */
.hero-section {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

/* Subtle diagonal stripe bg */
.hero-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0px, transparent 80px,
    rgba(247,208,70,0.02) 80px, rgba(247,208,70,0.02) 81px
  );
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; align-items: stretch;
  position: relative; z-index: 1;
}

/* Left — content */
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; padding: 60px 48px 60px 60px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yglow); border: 1px solid var(--border-y);
  border-radius: var(--r-pill);
  padding: 5px 14px; margin-bottom: 20px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.5px; width: fit-content;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 5.5vw, 82px);
  letter-spacing: 2px; line-height: 0.95;
  color: var(--text); margin-bottom: 16px;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-title .line-orange { color: var(--orange); display: block; }

.hero-sub { font-size: 16px; color: var(--text-md); line-height: 1.7; margin-bottom: 28px; max-width: 420px; }

/* Bonus badge */
.hero-bonus {
  display: flex; align-items: center; gap: 0;
  background: var(--card); border: 1px solid var(--border-y);
  border-radius: var(--r-md); overflow: hidden;
  margin-bottom: 28px; max-width: 420px;
  box-shadow: var(--sh-card);
}
.hero-bonus-left {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 100px;
}
.hero-bonus-pct { font-family: var(--font-d); font-size: 40px; color: #000; letter-spacing: 1px; line-height: 1; }
.hero-bonus-pct-sub { font-size: 10px; color: rgba(0,0,0,0.65); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.hero-bonus-right { padding: 14px 18px; }
.hero-bonus-amount { font-family: var(--font-d); font-size: 26px; color: var(--gold); letter-spacing: 1px; line-height: 1; margin-bottom: 3px; }
.hero-bonus-sub { font-size: 12px; color: var(--text-md); line-height: 1.5; }
.hero-bonus-sub strong { color: var(--orange); }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }

.hero-trust { font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 5px; }
.hero-trust::before { content: '🔒'; font-size: 12px; }

/* Right — image */
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 30%);
  pointer-events: none;
}

/* =============================================
   STATS ROW
   ============================================= */
.stats-row {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { display: flex; align-items: stretch; }
.stat-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 22px 16px; border-right: 1px solid var(--border);
  transition: background var(--tr);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--yglow); }
.stat-num { font-family: var(--font-d); font-size: 36px; color: var(--gold); letter-spacing: 1px; line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--text-dim); margin-top: 5px; text-align: center; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 56px 0; }
.section-dark { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 2px; color: var(--text); line-height: 1.05;
  margin-bottom: 6px;
}
.sec-title .acc { color: var(--gold); }
.sec-title .acc2 { color: var(--orange); }
.sec-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 28px; }
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sec-link { font-size: 13px; color: var(--gold); font-weight: 600; transition: opacity var(--tr); }
.sec-link:hover { opacity: 0.8; }

/* =============================================
   GAME TABS
   ============================================= */
.tabs {
  display: flex; gap: 4px; margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: none; padding: 10px 18px;
  font-family: var(--font-b); font-size: 13px; font-weight: 600;
  color: var(--text-dim); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--tr); border-radius: var(--r-xs) var(--r-xs) 0 0;
}
.tab-btn:hover { color: var(--text); background: var(--yglow); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(247,208,70,0.05); }

.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }

/* Game card — 1:1 square */
.game-card {
  border-radius: var(--r-md); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  cursor: pointer; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: block;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--sh-gold); border-color: var(--border-y); }
.game-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg3); }
.game-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.game-card:hover .game-thumb img { transform: scale(1.06); }

.game-badge { position: absolute; top: 6px; left: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 2; }
.badge-jackpot { background: #FF4D4D; color: #fff; }
.badge-new     { background: var(--green); color: #0a1a00; }
.badge-hot     { background: var(--orange); color: #fff; }
.badge-live    { background: #8B5CF6; color: #fff; }

.game-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%); display: flex; align-items: flex-end; justify-content: center; padding: 10px; opacity: 0; transition: opacity var(--tr); }
.game-card:hover .game-overlay { opacity: 1; }
.play-btn { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--gold); color: #000 !important; font-family: var(--font-b); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; padding: 8px; border-radius: var(--r-xs); transition: background var(--tr); text-decoration: none !important; }
.play-btn:hover { background: var(--gold-lt); }

.game-info { padding: 10px 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.game-name { font-weight: 700; font-size: 13px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; transition: color var(--tr); }
.game-card:hover .game-name { color: var(--gold); }
.game-provider { font-size: 11px; color: var(--text-dim); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }

/* =============================================
   FEATURE CARDS
   ============================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 20px;
  transition: all var(--tr); text-align: center;
}
.feature-card:hover { border-color: var(--border-y); box-shadow: var(--sh-gold); transform: translateY(-3px); }
.feature-icon { font-size: 36px; margin-bottom: 12px; }
.feature-title { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--text-md); line-height: 1.6; }

/* =============================================
   PROVIDERS
   ============================================= */
.providers-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.provider-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; transition: all var(--tr);
}
.provider-item:hover { border-color: var(--border-y); box-shadow: var(--sh-gold); transform: translateY(-2px); }
.provider-img { aspect-ratio: 16/9; overflow: hidden; }
.provider-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: all 0.4s ease; }
.provider-item:hover .provider-img img { filter: grayscale(0) brightness(1.1); transform: scale(1.05); }
.provider-name { display: block; text-align: center; font-size: 11px; font-weight: 600; color: var(--text-dim); padding: 6px; border-top: 1px solid var(--border); transition: color var(--tr); }
.provider-item:hover .provider-name { color: var(--gold); }

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section { padding: 32px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.payments-grid { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-xs); padding: 8px 14px; height: 44px; min-width: 76px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.pay-item:hover { border-color: var(--border-y); box-shadow: var(--sh-gold); }
.pay-item img { max-height: 22px; max-width: 66px; width: auto; height: auto; object-fit: contain; filter: brightness(0.85); transition: filter var(--tr); }
.pay-item:hover img { filter: brightness(1.1); }

/* =============================================
   REVIEW TABLE
   ============================================= */
.review-table-wrap { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-card); border: 1px solid var(--border); margin: 1.5rem 0; }
.review-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.review-table tr { border-bottom: 1px solid var(--border); transition: background var(--tr); }
.review-table tr:last-child { border-bottom: none; }
.review-table tr:hover { background: rgba(247,208,70,0.04); }
.review-table td { padding: 11px 16px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(26,26,26,0.8); width: 40%; }
.review-table td:last-child { color: var(--text-md); background: rgba(18,18,18,0.8); }

/* =============================================
   PROSE
   ============================================= */
.prose h2 { font-family: var(--font-d); font-size: clamp(18px,2.5vw,26px); letter-spacing:1.5px; color:var(--text); margin:2.5rem 0 0.75rem; padding-bottom:8px; border-bottom:1px solid var(--border); scroll-margin-top:calc(var(--header-h) + 16px); }
.prose h2:first-child { margin-top:0; }
.prose h3 { font-size:15px; font-weight:700; color:var(--gold); margin:1.75rem 0 0.5rem; }
.prose p { font-size:15px; color:var(--text-md); line-height:1.8; margin-bottom:1rem; }
.prose strong { color:var(--text); font-weight:700; }
.prose a { color:var(--gold); text-decoration:underline; }
.prose table { width:100%; border-collapse:collapse; margin:1.5rem 0; font-size:14px; border-radius:var(--r-md); overflow:hidden; box-shadow:var(--sh-card); }
.prose thead { background:rgba(247,208,70,0.08); border-bottom:2px solid var(--gold); }
.prose th { font-weight:700; font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--gold); padding:11px 14px; text-align:left; }
.prose tbody tr { border-bottom:1px solid var(--border); transition:background var(--tr); }
.prose tbody tr:last-child { border-bottom:none; }
.prose tbody tr:hover { background:rgba(247,208,70,0.04); }
.prose td { padding:10px 14px; color:var(--text-md); font-size:14px; }
.prose td:first-child { font-weight:600; color:var(--text); }

.prose ol, .prose ul, .list-content { padding-left:1.5em !important; margin:0.75rem 0 1rem !important; max-width:100%; box-sizing:border-box; }
.prose ol, .list-content.list-ol { list-style:decimal !important; }
.prose ul, .list-content.list-ul { list-style:disc !important; }
.prose ol li, .prose ul li, .list-content li { padding-left:0.3em; margin-bottom:6px; font-size:15px; color:var(--text-md); line-height:1.75; }
.prose ol li::marker, .list-content.list-ol li::marker { color:var(--gold); font-weight:700; }
.prose ul li::marker, .list-content.list-ul li::marker { color:var(--gold); }

.bonus-cards { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin:1.25rem 0; list-style:none !important; padding-left:0 !important; }
.bonus-card { background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); padding:20px; transition:border-color var(--tr), box-shadow var(--tr); }
.bonus-card:hover { border-color:var(--border-y); box-shadow:var(--sh-gold); }
.bonus-card-title { font-family:var(--font-d); font-size:18px; letter-spacing:1px; color:var(--text); margin-bottom:7px; }
.bonus-card-text { font-size:13px; color:var(--text-md); line-height:1.6; margin:0; }

.pros-cons { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:1.5rem 0; }
.pros-card, .cons-card { background:var(--card); border-radius:var(--r-md); overflow:hidden; }
.pros-head { background:rgba(34,197,94,0.08); color:var(--green); border-bottom:2px solid var(--green); padding:10px 16px; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.cons-head { background:rgba(239,68,68,0.08); color:var(--red); border-bottom:2px solid var(--red); padding:10px 16px; font-size:11px; font-weight:700; letter-spacing:1px; text-transform:uppercase; }
.pros-body, .cons-body { padding:10px 16px; }
.pros-body li, .cons-body li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--text-md); padding:5px 0; border-bottom:1px solid rgba(255,255,255,0.04); line-height:1.5; }
.pros-body li:last-child, .cons-body li:last-child { border-bottom:none; }
.pros-body li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; }
.cons-body li::before { content:'✗'; color:var(--red); font-weight:700; flex-shrink:0; }

nav ul, .header-nav, .mobile-nav ul, .footer-links { list-style:none !important; padding-left:0 !important; margin:0 !important; }

/* TOC */
.toc-wrap { margin:1.75rem 0; border:1px solid var(--border); border-radius:var(--r-md); background:var(--card); overflow:hidden; }
.toc-toggle { display:flex; align-items:center; gap:10px; width:100%; background:none; border:none; padding:14px 18px; cursor:pointer; color:var(--text); font-family:var(--font-b); font-size:14px; font-weight:600; text-align:left; transition:background var(--tr); }
.toc-toggle:hover { background:rgba(255,255,255,0.02); }
.toc-toggle svg { color:var(--gold); flex-shrink:0; width:16px; height:16px; }
.toc-label { flex:1; }
.toc-chevron { width:16px; height:16px; color:var(--gold); transition:transform var(--tr); flex-shrink:0; }
.toc-wrap.open .toc-chevron { transform:rotate(180deg); }
.toc-body { max-height:0; overflow:hidden; transition:max-height 0.3s ease; border-top:0 solid var(--border); }
.toc-wrap.open .toc-body { max-height:600px; border-top-width:1px; }
.toc-list { padding:10px 18px 14px; display:flex; flex-direction:column; gap:3px; }
.toc-list a { display:block; font-size:13px; color:var(--text-md); padding:5px 8px; border-radius:var(--r-xs); border-left:2px solid transparent; transition:all var(--tr); }
.toc-list a:hover, .toc-list a.active { color:var(--gold); border-left-color:var(--gold); background:var(--yglow); padding-left:13px; }

/* FAQ */
.faq-list { display:flex; flex-direction:column; gap:8px; }
.faq-item { background:var(--card); border:1px solid var(--border); border-radius:var(--r-md); overflow:hidden; transition:border-color var(--tr); }
.faq-item:hover, .faq-item.open { border-color:var(--border-y); }
.faq-question, h3.faq-question { width:100%; background:none; border:none; padding:15px 18px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:var(--font-b); font-size:14px; font-weight:600; color:var(--text); text-align:left; gap:12px; transition:color var(--tr), background var(--tr); letter-spacing:normal; }
.faq-question:hover, h3.faq-question:hover { color:var(--gold); background:rgba(247,208,70,0.03); }
.faq-icon { flex-shrink:0; width:26px; height:26px; border-radius:50%; background:rgba(247,208,70,0.1); border:1px solid rgba(247,208,70,0.25); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:16px; transition:all var(--tr); }
.faq-item.open .faq-icon { background:rgba(247,208,70,0.2); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease, padding 0.2s ease; font-size:14px; color:var(--text-md); line-height:1.75; border-top:0 solid var(--border); padding:0 18px; }
.faq-answer p { font-size:14px; color:var(--text-md); line-height:1.75; margin:0; }
.faq-item.open .faq-answer { max-height:400px; border-top-width:1px; padding:12px 18px 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background:var(--bg); border-top:1px solid var(--border); padding:48px 0 24px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding-bottom:28px; border-bottom:1px solid var(--border); margin-bottom:20px; }
.footer-logo { height:36px; margin-bottom:12px; }
.footer-about { font-size:13px; color:var(--text-dim); line-height:1.7; margin-bottom:16px; max-width:270px; }
.footer-social { display:flex; gap:8px; }
.social-btn { width:32px; height:32px; border-radius:50%; background:var(--card); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--text-dim); cursor:pointer; transition:all var(--tr); user-select:none; }
.social-btn:hover { background:var(--yglow); border-color:var(--border-y); color:var(--gold); transform:translateY(-2px); }
.footer-col-title { font-weight:700; font-size:12px; color:var(--text); margin-bottom:12px; letter-spacing:0.5px; text-transform:uppercase; }
.footer-links { display:flex; flex-direction:column; gap:8px; }
.footer-links a { font-size:13px; color:var(--text-dim); transition:color var(--tr); }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.age-badge { flex-shrink:0; display:flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:rgba(247,208,70,0.1); border:1.5px solid rgba(247,208,70,0.3); color:var(--gold); font-weight:900; font-size:10px; margin-top:2px; }
.footer-disclaimer { font-size:11px; color:var(--text-dim); line-height:1.65; max-width:560px; }
.footer-copy { font-size:11px; color:var(--text-dim); white-space:nowrap; align-self:flex-end; }

/* FADE */
.fade-in { opacity:0; transform:translateY(14px); transition:opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }
.fd1{transition-delay:.1s} .fd2{transition-delay:.2s} .fd3{transition-delay:.3s}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { min-height: 400px; }
  .hero-title { font-size: 60px; }
  .tab-panel.active { grid-template-columns: repeat(4, 1fr); }
  .providers-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 280px; }
  .hero-left { padding: 36px 24px !important; }
  .hero-title { font-size: 52px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }
  .hero-bonus { max-width: 100%; }

  .tab-panel.active { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 560px) {
  html, body { overflow-x: hidden; }
  :root { --header-h: 58px; }
  .mobile-nav { top: 58px; }
  .hero-title { font-size: 38px; }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
  .review-table { display: block; overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { align-self: flex-start; }
  .prose {
  padding-left: 16px;
  padding-right: 16px;
}
.section.prose.container {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
}
