/* =============================================
   BETORY V3 — Article centered, Cyan accent
   #0B0B14 bg | #7B5CF0 purple | #38BDF8 cyan
   Max-w-1024, hero full-bg duo characters
   ============================================= */

@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:       #08080D;
  --bg2:      #0C0C1A;
  --bg3:      #111128;
  --card:     #0E0E22;
  --card2:    #131330;

  --purple:   #7B5CF0;
  --purple-lt:#9B7EF8;
  --purple-dk:#5A3DD0;
  --pglow:    rgba(123,92,240,0.15);
  --cyan:     #38BDF8;
  --cyan-lt:  #7DD3FC;
  --cyan-dk:  #0EA5E9;
  --cglow:    rgba(56,189,248,0.15);
  --gold:     #FFBE16;
  --gold-lt:  #FFD04E;
  --neon:     #B8FF3C;
  --red:      #FF4757;

  --text:     #F0EEF8;
  --text-md:  rgba(240,238,248,0.72);
  --text-dim: rgba(240,238,248,0.38);
  --border:   rgba(56,189,248,0.12);
  --border-p: rgba(123,92,240,0.2);

  --header-h: 64px;
  --max-w:    1024px;
  --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-cyan:   0 0 24px rgba(56,189,248,0.2);
  --sh-purple: 0 0 24px rgba(123,92,240,0.2);
  --sh-gold:   0 4px 16px rgba(255,190,22,0.3);
}

*, *::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(--purple-dk); border-radius: 3px; }

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

/* =============================================
   HEADER — minimal, sticky
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(8,8,13,0.96);
  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: 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: 44px; 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(--cyan); background: var(--cglow); }

.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(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(--cyan); background: var(--cglow); }
.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;
}
.btn:active { transform: scale(0.97); }

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

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dk));
  color: #000 !important; font-weight: 800; box-shadow: var(--sh-cyan);
  text-decoration: none !important;
}
.btn-cyan:visited,
.btn-cyan:hover,
.btn-cyan:active {
  color: #000 !important;
  text-decoration: none !important;
}
.btn-cyan:hover { background: linear-gradient(135deg, var(--cyan-lt), var(--cyan)); box-shadow: 0 6px 24px rgba(56,189,248,0.4); transform: translateY(-1px); }

.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)); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cglow); }

.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 — full-width, duo bg, centered text
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(123,92,240,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(56,189,248,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(123,92,240,0.08) 0%, transparent 50%),
    var(--bg2);
}

/* CSS grid pattern bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 25s linear infinite;
}
/* No img needed */
.hero-bg img { display: none !important; width: 0 !important; height: 0 !important; }

/* Bottom fade */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 15%, transparent 80%, var(--bg) 100%);
  pointer-events: none;
}

@keyframes grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Animated cyan scan lines */
.hero-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-line {
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--cyan) 40%, var(--purple-lt) 60%, transparent 100%);
  opacity: 0;
  animation: scan-line 8s ease-in-out infinite;
}
.hero-line:nth-child(1) { top: 25%; animation-delay: 0s; }
.hero-line:nth-child(2) { top: 55%; animation-delay: 2.5s; }
.hero-line:nth-child(3) { top: 78%; animation-delay: 5s; }

@keyframes scan-line {
  0%   { opacity: 0; transform: translateX(-100%); }
  30%  { opacity: 0.35; }
  70%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* Floating particles */
.hero-section::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 20% 30%, var(--cyan) 0%, transparent 100%),
    radial-gradient(2px 2px at 80% 20%, var(--purple-lt) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 70%, var(--cyan) 0%, transparent 100%),
    radial-gradient(2px 2px at 35% 75%, var(--gold) 0%, transparent 100%),
    radial-gradient(2px 2px at 75% 55%, var(--purple-lt) 0%, transparent 100%);
  opacity: 0.6;
  animation: particles-drift 12s ease-in-out infinite alternate;
}
@keyframes particles-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Side glow borders */
.hero-section::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  border-top: 1px solid rgba(56,189,248,0.15);
  border-bottom: 1px solid rgba(123,92,240,0.15);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 52px 20px 52px;
  width: 100%;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px; font-weight: 600; color: var(--cyan);
  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, 8vw, 100px);
  letter-spacing: 4px; line-height: 0.95;
  color: var(--text); margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(56,189,248,0.2), 0 0 20px rgba(123,92,240,0.3);
}
.hero-title .acc { color: var(--cyan); display: block; }

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

/* Bonus row */
.hero-bonus-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
.hero-bonus-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,92,240,0.12);
  border: 1px solid rgba(123,92,240,0.3);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-size: 14px; font-weight: 700;
}
.hero-bonus-pill .val { color: var(--gold); font-family: var(--font-d); font-size: 22px; letter-spacing: 1px; }
.hero-bonus-pill .lbl { color: var(--text-md); font-size: 12px; }

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 20px;
}

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

/* Registration banner below hero */
.reg-banner {
  display: block; width: 100%; cursor: pointer;
  transition: opacity var(--tr);
}
.reg-banner:hover { opacity: 0.9; }
.reg-banner img { width: 100%; height: auto; display: block; }

/* =============================================
   STATS ROW — below hero
   ============================================= */
.stats-row {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-row-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(--cglow); }
.stat-num {
  font-family: var(--font-d);
  font-size: 32px; color: var(--cyan);
  letter-spacing: 1px; line-height: 1;
}
.stat-lbl { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* =============================================
   ARTICLE LAYOUT — centered max-w-1024
   ============================================= */
.article-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   GAME TABS
   ============================================= */
.games-section { padding: 48px 0 36px; }

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

.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: 15px; height: 15px; fill: currentColor; }
.tab-btn:hover { color: var(--text); background: var(--cglow); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); background: rgba(56,189,248,0.05); }

.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(--card); border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--sh-cyan); border-color: rgba(56,189,248,0.3); }

.game-thumb { position: relative; aspect-ratio: 263/156; 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: 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(--cyan); color: #001820;
  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(--cyan-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(--cyan); }
.game-provider { font-size: 11px; color: var(--text-dim); margin-top: 1px; }

/* =============================================
   PROVIDERS — image grid
   ============================================= */
.providers-section {
  padding: 36px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.providers-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.provider-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm); overflow: hidden;
  cursor: pointer; transition: all var(--tr);
}
.provider-item:hover { border-color: rgba(56,189,248,0.3); box-shadow: var(--sh-cyan); }
.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 rgba(255,255,255,0.06); transition: color var(--tr); }
.provider-item:hover .provider-name { color: var(--cyan); }

/* =============================================
   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(56,189,248,0.04); }
.review-table td { padding: 11px 16px; vertical-align: middle; }
.review-table td:first-child { font-weight: 600; color: var(--text); background: rgba(17,17,40,0.6); width: 40%; }
.review-table td:last-child { color: var(--text-md); background: rgba(14,14,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: 16px; font-weight: 700; color: var(--cyan); 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(--cyan); 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(56,189,248,0.08); border-bottom: 2px solid var(--cyan); }
.prose th { font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); 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(56,189,248,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(--cyan); }

.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: rgba(56,189,248,0.25); box-shadow: var(--sh-cyan); }
.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, .cons-head { padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pros-head { background: rgba(56,189,248,0.08); color: var(--cyan); border-bottom: 2px solid var(--cyan); }
.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(--cyan); 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;
}

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section { padding: 36px 0; border-top: 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: rgba(56,189,248,0.3); box-shadow: var(--sh-cyan); }
.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); }

/* =============================================
   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(--cyan); flex-shrink: 0; width: 16px; height: 16px; }
.toc-label { flex: 1; }
.toc-chevron { width: 16px; height: 16px; color: var(--cyan); 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(--cyan); border-left-color: var(--cyan);
  background: rgba(56,189,248,0.06); padding-left: 13px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section { padding: 36px 0; }
.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: rgba(56,189,248,0.25); }
.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(--cyan); background: rgba(56,189,248,0.03); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 16px; transition: all var(--tr);
}
.faq-item.open .faq-icon { background: rgba(56,189,248,0.18); 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: var(--r-xs);
  background: var(--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(--cglow); border-color: rgba(56,189,248,0.3); color: var(--cyan); 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(--cyan); }
.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(56,189,248,0.08); border: 1.5px solid rgba(56,189,248,0.3);
  color: var(--cyan); 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 ≤ 900px
   ============================================= */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: block; }

  .hero-title { font-size: 56px; }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .stats-row-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* =============================================
   RESPONSIVE ≤ 640px
   ============================================= */
@media (max-width: 640px) {
  :root { --header-h: 56px; }
  .mobile-nav { top: 56px; }
  html, body { overflow-x: hidden; }

  .hero-title { font-size: 42px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; }
  .hero-bonus-row { flex-direction: column; align-items: center; }

  .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; -webkit-overflow-scrolling: touch; 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; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 34px; }
  .tab-panel.active { gap: 6px; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); }
}
