/* =============================================
   BETORY CASINO V1 — Cyberpunk Dark
   Colors: #0B0B10 bg | #7B5CF0 purple | #FFBE16 gold CTA
   Outfit (variable) + Bebas Neue | NL geo
   ============================================= */

/* --- Fonts --- */
@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;
}

/* --- Tokens --- */
:root {
  --bg-900:   #08080D;
  --bg-800:   #0B0B14;
  --bg-700:   #111124;
  --bg-600:   #171732;
  --bg-card:  #0F0F22;
  --bg-card2: #141430;

  --purple:   #7B5CF0;
  --purple-lt:#9B7EF8;
  --purple-dk:#5A3DD0;
  --purple-glow: rgba(123,92,240,0.2);
  --gold:     #FFBE16;
  --gold-lt:  #FFD04E;
  --neon:     #B8FF3C;
  --red:      #FF4757;
  --cyan:     #38BDF8;

  --text:     #F0EEF8;
  --text-md:  rgba(240,238,248,0.72);
  --text-dim: rgba(240,238,248,0.4);
  --border:   rgba(123,92,240,0.15);
  --border-gold: rgba(255,190,22,0.25);

  --header-h: 64px;
  --max-w:    1200px;
  --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.6);
  --sh-purple: 0 0 24px rgba(123,92,240,0.25);
  --sh-gold:   0 4px 16px rgba(255,190,22,0.3);
  --sh-btn:    0 4px 18px rgba(255,190,22,0.4);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg-900);
  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-900); }
::-webkit-scrollbar-thumb { background: var(--purple-dk); border-radius: 3px; }

.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(8,8,13,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: 0 2px 14px rgba(0,0,0,0.8); }

.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.8; }
.logo-link img { height: 36px; 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);
  white-space: nowrap;
}
.header-nav a:hover { color: var(--purple-lt); background: var(--purple-glow); }

.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 */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(8,8,13,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; }
.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(--purple-lt); background: var(--purple-glow); }
.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; letter-spacing: 0.3px;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #FF9500);
  color: #1a0e00; font-weight: 800;
  box-shadow: var(--sh-btn);
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); box-shadow: 0 6px 24px rgba(255,190,22,0.5); animation: none; transform: translateY(-1px); }
@keyframes pulse-gold { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dk));
  color: #fff; box-shadow: var(--sh-purple);
}
.btn-purple:hover { background: linear-gradient(135deg, var(--purple-lt), var(--purple)); box-shadow: 0 6px 24px rgba(123,92,240,0.4); transform: translateY(-1px); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover { border-color: var(--purple-lt); color: var(--purple-lt); background: var(--purple-glow); }

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

/* =============================================
   HERO — full-width, cyberpunk character bg
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--bg-800);
}

/* Character image as bg */
.hero-bg-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 65%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient overlay left */
.hero-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-800) 0%, rgba(11,11,20,0.7) 50%, transparent 100%);
}

/* Noise particles */
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(123,92,240,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 5% 80%, rgba(255,190,22,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  padding: 60px 0 60px;
  max-width: 560px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(123,92,240,0.12);
  border: 1px solid rgba(123,92,240,0.3);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--purple-lt);
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 6px var(--neon);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 7vw, 96px);
  letter-spacing: 3px;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(123,92,240,0.3);
}
.hero-title .acc { color: var(--purple-lt); display: block; }

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

/* Bonus block */
.hero-bonus {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(123,92,240,0.08);
  border: 1px solid rgba(123,92,240,0.25);
  border-radius: var(--r-md);
  padding: 16px 20px; margin-bottom: 28px;
  width: 100%; max-width: 460px;
}
.hero-bonus-num {
  font-family: var(--font-d);
  font-size: 46px; color: var(--gold);
  letter-spacing: 1px; line-height: 1; flex-shrink: 0;
}
.hero-bonus-txt { font-size: 13px; color: var(--text-md); line-height: 1.5; }
.hero-bonus-txt strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 2px; }
.hero-bonus-txt em { color: var(--purple-lt); font-style: normal; font-weight: 700; }

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

.hero-trust {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--text-dim);
}
.hero-trust svg { width: 12px; height: 12px; color: var(--neon); flex-shrink: 0; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }

.sec-head { margin-bottom: 28px; }
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: 2px; color: var(--text);
  line-height: 1.05; margin-bottom: 6px;
}
.sec-title .acc { color: var(--purple-lt); }
.sec-sub { font-size: 13px; color: var(--text-dim); }

/* =============================================
   GAME TABS — 16:9 cards like competitor
   ============================================= */
.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 svg { width: 16px; height: 16px; fill: currentColor; transition: fill var(--tr); }
.tab-btn:hover { color: var(--text); background: rgba(123,92,240,0.05); }
.tab-btn.active { color: var(--purple-lt); border-bottom-color: var(--purple); background: rgba(123,92,240,0.06); }

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

.game-card {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  display: flex; flex-direction: column;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-purple);
  border-color: rgba(123,92,240,0.35);
}

/* 16:9 aspect ratio — like competitor */
.game-thumb {
  position: relative;
  aspect-ratio: 263/156;
  overflow: hidden;
  background: var(--bg-700);
}
.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: 10px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 3px 7px;
  border-radius: 4px; z-index: 2;
}
.badge-hot  { background: var(--red); color: #fff; }
.badge-new  { background: var(--neon); color: #0a1a00; }
.badge-live { background: var(--purple); color: #fff; }
.badge-top  { background: var(--gold); color: #1a0e00; }

.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,13,0.92) 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: #1a0e00;
  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;
}
.play-btn:hover { background: var(--gold-lt); }

.game-info { padding: 8px 10px 10px; }
.game-name {
  font-weight: 600; font-size: 13px; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color var(--tr);
}
.game-card:hover .game-name { color: var(--purple-lt); }
.game-provider { font-size: 11px; color: var(--text-dim); margin-top: 1px; }

/* All games link */
.games-more { text-align: center; margin-top: 24px; }

/* =============================================
   PROVIDERS — scrollable row with images
   ============================================= */
.providers-section {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.providers-track {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
}
.provider-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: 120px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--tr);
}
.provider-chip img {
  max-width: 90px; max-height: 40px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(0.3) brightness(0.9);
  transition: all var(--tr);
}
.provider-chip:hover {
  border-color: rgba(123,92,240,0.4);
  box-shadow: var(--sh-purple);
}
.provider-chip:hover img { filter: grayscale(0) brightness(1.1); }

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  background: rgba(11,11,20,0.5);
}
.payments-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; align-items: center;
}
.pay-item {
  background: var(--bg-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: rgba(123,92,240,0.35); box-shadow: var(--sh-purple); }
.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); }
.pay-label { font-size: 11px; font-weight: 700; color: var(--text-md); }

/* =============================================
   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(123,92,240,0.04); }
.review-table td { padding: 11px 16px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(23,23,50,0.6); width: 40%; }
.review-table td:last-child { color: var(--text-md); background: rgba(15,15,34,0.6); }

/* =============================================
   PROSE
   ============================================= */
.prose h2 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.5vw, 28px);
  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: clamp(15px, 2vw, 18px); font-weight: 700;
  color: var(--purple-lt); margin: 1.75rem 0 0.5rem;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.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 */
.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,0.1); border-bottom: 2px solid var(--purple); }
.prose th {
  font-weight: 700; 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,0.04); }
.prose td { padding: 10px 14px; color: var(--text-md); font-size: 14px; }
.prose td:first-child { font-weight: 600; color: var(--text); }

/* Lists */
.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(--purple-lt); }

/* Bonus cards */
.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(--bg-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: rgba(123,92,240,0.35); box-shadow: var(--sh-purple); }
.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 */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.5rem 0; }
.pros-card, .cons-card { background: var(--bg-card); border-radius: var(--r-md); overflow: hidden; }
.pros-head, .cons-head { padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pros-head { background: rgba(184,255,60,0.08); color: var(--neon); border-bottom: 2px solid var(--neon); }
.cons-head { background: rgba(255,71,87,0.08); color: var(--red); border-bottom: 2px solid var(--red); }
.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(--neon); font-weight: 700; flex-shrink: 0; }
.cons-body li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Protect nav */
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(--bg-card);
  overflow: hidden; box-shadow: var(--sh-card);
}
.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.03); }
.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 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(--purple-lt); border-left-color: var(--purple);
  background: rgba(123,92,240,0.07); padding-left: 13px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--tr); box-shadow: var(--sh-card);
}
.faq-item:hover, .faq-item.open { border-color: rgba(123,92,240,0.3); }

.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);
}
.faq-question:hover { color: var(--purple-lt); background: rgba(123,92,240,0.04); }
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;
}
h3.faq-question:hover { color: var(--purple-lt); background: rgba(123,92,240,0.04); }

.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(123,92,240,0.1); border: 1px solid rgba(123,92,240,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-lt); font-size: 16px; transition: all var(--tr);
}
.faq-item.open .faq-icon { background: rgba(123,92,240,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-900);
  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: 32px; 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: var(--r-xs);
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-dim); cursor: pointer;
  transition: all var(--tr); user-select: none;
}
.social-btn:hover { background: var(--purple-glow); border-color: rgba(123,92,240,0.4); color: var(--purple-lt); 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(--purple-lt); }
.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(123,92,240,0.1); border: 1.5px solid rgba(123,92,240,0.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: 560px; }
.footer-copy { font-size: 11px; color: var(--text-dim); white-space: nowrap; align-self: flex-end; }

/* =============================================
   FADE IN
   ============================================= */
.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: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE ≤ 1024px
   ============================================= */
@media (max-width: 1024px) {
  .tab-panel.active { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* =============================================
   RESPONSIVE ≤ 900px
   ============================================= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }

  .hero-bg-img { width: 100%; opacity: 0.25; }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: 58px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }

  .tab-panel.active { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE ≤ 640px
   ============================================= */
@media (max-width: 640px) {
  :root { --header-h: 56px; }
  .mobile-nav { top: 56px; }
  .container { padding: 0 16px; }

  .hero-section { min-height: auto; }
  .hero-inner { padding: 40px 0; }
  .hero-title { font-size: 44px; }
  .hero-bonus { flex-direction: column; text-align: center; gap: 8px; }

  .tab-panel.active { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .providers-track { gap: 6px; }
  .provider-chip { width: 100px; height: 52px; }

  .prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  .review-table { display: block; overflow-x: auto; }

  .section { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { align-self: flex-start; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 36px; }
  .tab-panel.active { gap: 6px; }
  .provider-chip { width: 86px; height: 44px; }
}

section.section.prose.container {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}