/* =============================================
   BETORY V5 — betory-nl.org (example)
   Mobile-first | #0B0B14 dark | #7B5CF0 purple | #FFDE45 yellow
   Full-width centered hero with char bg | No sidebar
   All release fixes built-in from day one
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg:        #0B0B14;
  --bg2:       #0F0F1C;
  --bg3:       #141428;
  --bg4:       #1A1A35;
  --card:      #12122A;

  --purple:    #7B5CF0;
  --purple-lt: #9B7CFF;
  --purple-dk: #5A3DD0;
  --pglow:     rgba(123,92,240,0.12);

  --yellow:    #FFDE45;
  --yellow-lt: #FFE87A;
  --yellow-dk: #D4B400;
  --yglow:     rgba(255,222,69,0.12);

  --orange:    #FF4F2B;
  --orange-lt: #FF7355;
  --oglow:     rgba(255,79,43,0.12);

  --neon:      #C4FF0D;
  --green:     #22C55E;
  --red:       #FF4444;

  --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-p:  rgba(123,92,240,0.25);
  --border-y:  rgba(255,222,69,0.22);

  --header-h: 66px;
  --max-w:    1100px;
  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 50px;
  --font-b: 'Outfit',system-ui,sans-serif;
  --font-d: 'Outfit',system-ui,sans-serif; /* display — heavy weight */
  --tr: 0.2s ease;
  --sh-card:   0 4px 24px rgba(0,0,0,0.65);
  --sh-purple: 0 0 28px rgba(123,92,240,0.25);
  --sh-yellow: 0 0 28px rgba(255,222,69,0.2);
  --sh-btn:    0 4px 20px rgba(255,79,43,0.45);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; padding: 0; margin: 0; }
img,svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--font-b); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 2px; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(11,11,20,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 16px; }
.logo-link { flex-shrink: 0; display: flex; align-items: center; transition: opacity var(--tr); }
.logo-link:hover { opacity: 0.85; }
.logo-link img { height: 36px; width: auto; }
.logo-link-mobile { display: none; align-items: center; flex-shrink: 0; }
.logo-link-mobile img { height: 30px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.header-nav a { font-size: 13px; font-weight: 600; color: var(--text-md); padding: 6px 12px; border-radius: var(--r-xs); transition: all var(--tr); white-space: nowrap; }
.header-nav a:hover { color: var(--yellow); background: var(--yglow); }
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; flex-shrink: 0; margin-left: auto; }
.burger span { display: block; width: 22px; 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(11,11,20,0.99); border-bottom: 1px solid var(--border); padding: 12px 16px 20px; z-index: 99; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity var(--tr),transform var(--tr); }
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.mobile-nav-links a { display: block; font-size: 15px; font-weight: 600; color: var(--text-md); padding: 11px 12px; border-radius: var(--r-xs); transition: all var(--tr); }
.mobile-nav-links a:hover { color: var(--yellow); 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: 14px; padding: 11px 22px; border-radius: var(--r-sm); border: none; transition: all var(--tr); white-space: nowrap; text-decoration: none !important; cursor: pointer; }
.btn:active { transform: scale(0.97); }

.btn-orange { background: linear-gradient(135deg, var(--orange), #c43010); color: #fff !important; font-weight: 800; box-shadow: var(--sh-btn); animation: pulse-o 2.6s ease-in-out infinite; }
.btn-orange:hover,.btn-orange:visited,.btn-orange:active { color: #fff !important; background: linear-gradient(135deg, var(--orange-lt), var(--orange)); animation: none; box-shadow: 0 6px 28px rgba(255,79,43,0.55); transform: translateY(-1px); }
@keyframes pulse-o { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }

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

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

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

.btn-outline-y { background: transparent; color: var(--yellow) !important; border: 1.5px solid var(--yellow); }
.btn-outline-y:hover { background: var(--yglow); }

.btn-sm  { font-size: 12px; padding: 8px 16px; }
.btn-lg  { font-size: 15px; padding: 13px 30px; border-radius: var(--r-md); }
.btn-xl  { font-size: 16px; padding: 15px 36px; border-radius: var(--r-md); font-weight: 900; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HERO — full-width with char bg image
   ============================================= */
.hero-section {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  min-height: 500px;
  display: flex; align-items: center;
}

/* Cyberpunk char as background right side */
.hero-char-bg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%; pointer-events: none; z-index: 0;
}
.hero-char-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
/* Gradient fade to left */
.hero-char-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--bg2) 0%, rgba(15,15,28,0.85) 40%, rgba(15,15,28,0.3) 70%, transparent 100%);
}
/* Bottom fade */
.hero-char-bg::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 1;
  background: linear-gradient(to top, var(--bg2) 0%, transparent 100%);
}

/* Purple glow orb */
.hero-section::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,92,240,0.15) 0%, transparent 65%);
  top: -100px; left: -100px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 580px; min-width: 0;
  padding: 56px 0 52px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--neon);
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: '—'; color: var(--purple); margin-right: 2px; }

.hero-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.0;
  color: var(--text); margin-bottom: 14px;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.hero-title .acc  { color: var(--purple); }
.hero-title .acc2 { color: var(--yellow); }

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

/* Bonus block — horizontal pill style */
.hero-bonus {
  display: flex; align-items: stretch;
  background: var(--card); border: 1px solid var(--border-p);
  border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 24px; max-width: 480px;
  box-shadow: var(--sh-card), var(--sh-purple);
}
.hero-bonus-left {
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  padding: 16px 22px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 100px; flex-shrink: 0;
}
.hbl-pct   { font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.hbl-label { font-size: 10px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.hero-bonus-right { padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.hbr-amount { font-size: 28px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 5px; }
.hbr-sub    { font-size: 12px; color: var(--text-md); line-height: 1.5; }
.hbr-sub strong { color: var(--neon); font-weight: 700; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-trust { font-size: 11px; color: var(--text-dim); display: flex; align-items: center; gap: 6px; }
.hero-trust::before { content: '★'; color: var(--yellow); font-size: 12px; }

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  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: 20px 16px; border-right: 1px solid var(--border); transition: background var(--tr); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--pglow); }
.stat-num { font-size: 32px; font-weight: 900; color: var(--purple); line-height: 1; }
.stat-lbl { font-size: 11px; color: var(--text-dim); margin-top: 5px; text-align: center; }

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

.sec-title { font-size: clamp(22px,3vw,36px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.5px; color: var(--text); margin-bottom: 6px; line-height: 1.05; }
.sec-title .acc  { color: var(--purple); }
.sec-title .acc2 { color: var(--yellow); }
.sec-sub    { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
.sec-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.sec-link   { font-size: 13px; color: var(--yellow); font-weight: 600; white-space: nowrap; }
.sec-link:hover { opacity: 0.75; }

/* =============================================
   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;
  text-align: center; transition: all var(--tr);
}
.feature-card:hover { border-color: var(--border-p); box-shadow: var(--sh-purple); transform: translateY(-3px); }
.feature-icon { font-size: 34px; margin-bottom: 10px; }
.feature-title { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); margin-bottom: 6px; }
.feature-desc { font-size: 12px; color: var(--text-md); line-height: 1.6; }

/* =============================================
   GAME TABS — 1:1 square
   ============================================= */
.tabs { display: flex; gap: 4px; margin-bottom: 16px; 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: 6px; background: none; border: none; padding: 9px 14px; font-family: var(--font-b); font-size: 13px; font-weight: 700; color: var(--text-dim); 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; flex-shrink: 0; }
.tab-btn:hover  { color: var(--text); background: var(--yglow); }
.tab-btn.active { color: var(--yellow); border-bottom-color: var(--yellow); background: rgba(255,222,69,0.05); }

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

/* RELEASE FIX: display:block */
.game-card { border-radius: var(--r-md); overflow: hidden; background: var(--card); border: 1px solid var(--border); transition: transform var(--tr),box-shadow var(--tr),border-color var(--tr); display: block; }
.game-card:hover { transform: translateY(-4px); box-shadow: var(--sh-purple); border-color: var(--border-p); }
.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.07); }
.game-badge { position: absolute; top: 7px; left: 7px; font-size: 9px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 7px; border-radius: 4px; z-index: 2; }
.badge-hot  { background: var(--orange); color: #fff; }
.badge-new  { background: var(--neon);   color: #000; }
.badge-live { background: var(--purple); color: #fff; }
.badge-top  { background: var(--yellow); color: #000; }
.game-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,0.9) 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(--purple); color: #fff !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(--purple-lt); }
/* RELEASE FIX: flex column gap */
.game-info { padding: 9px 10px 11px; display: flex; flex-direction: column; gap: 3px; }
.game-name { font-weight: 700; font-size: 12px; 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(--yellow); }
.game-provider { font-size: 11px; color: var(--text-dim); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }

/* =============================================
   PROVIDERS
   ============================================= */
.providers-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.provider-chip { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 14px; font-size: 12px; font-weight: 600; color: var(--text-dim); display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all var(--tr); white-space: nowrap; }
.provider-chip img { height: 16px; width: auto; object-fit: contain; filter: grayscale(0.3); transition: filter var(--tr); }
.provider-chip:hover { border-color: var(--border-p); color: var(--purple-lt); box-shadow: var(--sh-purple); }
.provider-chip:hover img { filter: grayscale(0) brightness(1.1); }

/* =============================================
   PAYMENTS
   ============================================= */
.payments-section { padding: 28px 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 16px; height: 46px; min-width: 78px; display: flex; align-items: center; justify-content: center; transition: all var(--tr); }
.pay-item:hover { border-color: var(--border-p); box-shadow: var(--sh-purple); }
.pay-item img { max-height: 24px; max-width: 68px; width: auto; height: auto; object-fit: contain; filter: brightness(0.85); transition: filter var(--tr); }
.pay-item:hover img { filter: brightness(1.1); }

/* =============================================
   SECTION BANNER
   ============================================= */
.section-banner { display: block; width: 100%; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-card); margin: 20px 0; transition: opacity var(--tr); }
.section-banner:hover { opacity: 0.88; }
.section-banner img { width: 100%; height: auto; display: block; max-height: 200px; object-fit: cover; }

/* =============================================
   REVIEW TABLE
   ============================================= */
.review-table-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); margin: 1.5rem 0; box-shadow: var(--sh-card); }
.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(123,92,240,0.04); }
.review-table td { padding: 11px 14px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(18,18,42,0.8); width: 42%; }
.review-table td:last-child { color: var(--text-md); background: rgba(12,12,30,0.8); }

/* =============================================
   PROSE
   ============================================= */
.prose h2 { font-size:clamp(18px,2.5vw,24px); font-weight:900; text-transform:uppercase; letter-spacing:.5px; color:var(--text); margin:2.5rem 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(--purple-lt); margin:1.75rem 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(--purple-lt); 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(123,92,240,.1); border-bottom:2px solid var(--purple); }
.prose th { font-weight:800; font-size:11px; letter-spacing:1px; text-transform:uppercase; color:var(--purple-lt); 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(123,92,240,.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:.75rem 0 1rem !important; }
.prose ol,.list-content.list-ol { list-style:decimal !important; }
.prose ul,.list-content.list-ul { list-style:disc !important; }
.prose li,.list-content li { padding-left:.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(--purple); font-weight:700; }
.prose ul li::marker,.list-content.list-ul li::marker { color:var(--yellow); }
.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:18px; transition:border-color var(--tr),box-shadow var(--tr); }
.bonus-card:hover { border-color:var(--border-p); box-shadow:var(--sh-purple); }
.bonus-card-title { font-size:17px; font-weight:900; text-transform:uppercase; color:var(--text); margin-bottom:6px; }
.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,.08); color:var(--green); border-bottom:2px solid var(--green); padding:10px 14px; font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.cons-head { background:rgba(255,68,68,.08); color:var(--red); border-bottom:2px solid var(--red); padding:10px 14px; font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase; }
.pros-body,.cons-body { padding:8px 14px; }
.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,.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-links,.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:12px 16px; color:var(--text); font-family:var(--font-b); font-size:14px; font-weight:700; text-align:left; transition:background var(--tr); }
.toc-toggle:hover { background:rgba(255,255,255,.02); }
.toc-toggle svg { color:var(--purple-lt); flex-shrink:0; width:16px; height:16px; }
.toc-label { flex:1; }
.toc-chevron { width:16px; height:16px; color:var(--purple-lt); 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 .3s ease; border-top:0 solid var(--border); }
.toc-wrap.open .toc-body { max-height:600px; border-top-width:1px; }
.toc-list { padding:10px 16px 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(--purple-lt); border-left-color:var(--purple); background:var(--pglow); 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-p); }
.faq-question,h3.faq-question { width:100%; background:none; border:none; padding:14px 16px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-family:var(--font-b); font-size:14px; font-weight:700; 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(--purple-lt); background:rgba(123,92,240,.03); }
.faq-icon { flex-shrink:0; width:24px; height:24px; border-radius:50%; background:rgba(123,92,240,.1); border:1px solid rgba(123,92,240,.25); display:flex; align-items:center; justify-content:center; color:var(--purple-lt); font-size:15px; transition:all var(--tr); }
.faq-item.open .faq-icon { background:rgba(123,92,240,.2); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease,padding .2s ease; font-size:14px; color:var(--text-md); line-height:1.75; border-top:0 solid var(--border); padding:0 16px; }
.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 16px 16px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background:var(--bg); border-top:1px solid var(--border); padding:44px 0 22px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; padding-bottom:24px; border-bottom:1px solid var(--border); margin-bottom:18px; }
.footer-logo { height:32px; margin-bottom:10px; }
.footer-about { font-size:13px; color:var(--text-dim); line-height:1.7; margin-bottom:14px; max-width:260px; }
.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(--pglow); border-color:var(--border-p); color:var(--purple-lt); transform:translateY(-2px); }
.footer-col-title { font-weight:800; font-size:12px; text-transform:uppercase; letter-spacing:.5px; color:var(--text); margin-bottom:10px; }
.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(--purple-lt); }
.footer-bottom { display:flex; align-items:flex-start; justify-content:space-between; gap:14px; 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(123,92,240,.1); border:1.5px solid rgba(123,92,240,.3); color:var(--purple-lt); font-weight:900; font-size:10px; margin-top:2px; }
.footer-disclaimer { font-size:11px; color:var(--text-dim); line-height:1.65; max-width:540px; }
.footer-copy { font-size:11px; color:var(--text-dim); white-space:nowrap; align-self:flex-end; }

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

/* =============================================
   ≤ 1100px
   ============================================= */
@media (max-width:1100px) {
  .hero-char-bg { width: 48%; }
  .tab-panel.active { grid-template-columns:repeat(4,1fr); }
  .feature-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:24px; }
}

/* =============================================
   ≤ 900px
   ============================================= */
@media (max-width:900px) {
  html, body { overflow-x: hidden; }
  .header-nav { display:none; }
  .header-actions { display:none; }
  .burger { display:flex; }
  .logo-link { display:none; }
  .logo-link-mobile { display:flex; }
  .mobile-nav { display:block; }

  .hero-section { min-height: auto; }
  .hero-char-bg { opacity: 0.15; width: 100%; }
  .hero-content { padding: 36px 0 32px; max-width: 100%; }
  .hero-title { font-size: 42px; word-break: break-word; }
  .hero-sub { display: none; }
  .hero-bonus { max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }

  .tab-panel.active { grid-template-columns:repeat(3,1fr); gap:10px; }
  .bonus-cards { grid-template-columns:1fr; }
  .pros-cons { grid-template-columns:1fr; }
  .feature-grid { grid-template-columns:1fr; }
}

/* =============================================
   ≤ 600px
   ============================================= */
@media (max-width:600px) {
  html, body { overflow-x: hidden; }
  :root { --header-h: 58px; }
  .mobile-nav { top: 58px; }
  .container { padding: 0 14px; }

  .hero-content { padding: 24px 0 26px; }
  .hero-title { font-size: 34px; }
  .hero-bonus-left { min-width: 80px; padding: 12px 14px; }
  .hbl-pct { font-size: 32px; }
  .hbr-amount { font-size: 22px; }

  .tab-panel.active { grid-template-columns:repeat(2,1fr); gap:8px; }
  .section.prose.container { padding-left:14px !important; padding-right:14px !important; }
  .prose table,.review-table { display:block; overflow-x:auto; white-space:nowrap; }
  .footer-grid { grid-template-columns:1fr; gap:18px; }
  .footer-bottom { flex-direction:column; gap:10px; }
  .footer-copy { align-self:flex-start; }
}

/* =============================================
   ≤ 380px
   ============================================= */
@media (max-width:380px) {
  .hero-title { font-size:28px; }
  .tab-btn { font-size:12px; padding:8px 10px; }
  .hbl-pct { font-size:28px; }
}
