/* =============================================
   BETSIXTY V5 — Dark Blue + Cyan
   Split layout: 65% content + 35% sticky sidebar
   Tabbed games, new hero style
   ============================================= */

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

/* --- Design Tokens --- */
:root {
  --bg-900:   #060E17;
  --bg-800:   #0D1B2A;
  --bg-700:   #112236;
  --bg-600:   #162C45;
  --bg-card:  #0F2035;
  --bg-card2: #132840;

  --cyan:     #00D4FF;
  --cyan-dk:  #00A8CC;
  --cyan-glow:rgba(0,212,255,0.15);
  --gold:     #FFB800;
  --green:    #00E676;
  --red:      #FF4757;
  --purple:   #8B5CF6;

  --text:     #F0F4F8;
  --text-md:  rgba(240,244,248,0.75);
  --text-dim: rgba(240,244,248,0.45);
  --border:   rgba(255,255,255,0.07);
  --border-c: rgba(0,212,255,0.2);

  --header-h: 62px;
  --sidebar-w: 320px;
  --max-w:    1200px;

  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --font-d: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-b: 'Outfit', system-ui, sans-serif;
  --tr:     0.2s ease;

  --sh-card:  0 4px 16px rgba(0,0,0,0.5);
  --sh-cyan:  0 0 20px rgba(0,212,255,0.2);
  --sh-btn:   0 4px 14px rgba(0,212,255,0.3);
  --sh-gold:  0 4px 14px rgba(255,184,0,0.35);
}

/* --- 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(--bg-600); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dk); }

.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(6,14,23,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 12px rgba(0,0,0,0.7); }

.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: 32px; 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(--cyan); background: var(--cyan-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 {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(6,14,23,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(--cyan-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: 600;
  font-size: 13px; padding: 9px 18px;
  border-radius: var(--r-xs); border: none;
  cursor: pointer; transition: all var(--tr);
  white-space: nowrap; text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-cyan {
  background: var(--cyan); color: #001820;
  font-weight: 700;
  box-shadow: var(--sh-btn);
}
.btn-cyan:hover { background: #33DDFF; box-shadow: 0 6px 20px rgba(0,212,255,0.45); transform: translateY(-1px); }

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

.btn-gold {
  background: var(--gold); color: #1a0e00;
  font-weight: 700; box-shadow: var(--sh-gold);
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-gold:hover { background: #FFD040; box-shadow: 0 6px 20px rgba(255,184,0,0.5); animation: none; transform: translateY(-1px); }
@keyframes pulse-gold {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

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

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

/* Animated bg grid */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite;
  pointer-events: none;
}
@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Radial glow */
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0 56px;
  position: relative;
  z-index: 1;
}

/* Left */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--border-c);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 6vw, 82px);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-title .accent { color: var(--cyan); }

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

/* Bonus ticker */
.hero-ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,212,255,0.05);
  border: 1px solid var(--border-c);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.ticker-amount {
  font-family: var(--font-d);
  font-size: 48px;
  color: var(--cyan);
  letter-spacing: 1px;
  line-height: 1;
  flex-shrink: 0;
}
.ticker-detail { font-size: 13px; color: var(--text-md); line-height: 1.5; }
.ticker-detail strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 2px; }
.ticker-detail em { color: var(--gold); font-style: normal; font-weight: 700; }

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

.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(--green); flex-shrink: 0; }

/* Right — image */
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--sh-cyan);
}
.hero-img-wrap a { display: block; }
.hero-img-wrap img { width: 100%; height: auto; display: block; }

/* Floating badges */
.hero-badge {
  position: absolute;
  background: rgba(6,14,23,0.92);
  border: 1px solid var(--border-c);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  backdrop-filter: blur(8px);
  animation: float-y 4s ease-in-out infinite;
}
.hero-badge:nth-child(2) { animation-delay: -2s; }
.badge-val {
  font-family: var(--font-d);
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: 1px;
  line-height: 1;
}
.badge-lbl { font-size: 10px; color: var(--text-dim); margin-top: 2px; }
.badge-tl { top: -14px; left: -14px; }
.badge-br { bottom: -14px; right: -14px; }

@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* =============================================
   PAGE SPLIT LAYOUT
   ============================================= */
.page-split {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 28px;
  align-items: start;
  padding: 36px 0 60px;
}

/* Main column */
.main-col { min-width: 0; }

/* Sticky sidebar */
.sticky-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sidebar CTA card */
.sidebar-cta {
  background: linear-gradient(135deg, var(--bg-700), var(--bg-card2));
  border: 1px solid var(--border-c);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-card), var(--sh-cyan);
}
.sidebar-cta-title {
  font-family: var(--font-d);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 6px;
}
.sidebar-cta-sub {
  font-size: 13px;
  color: var(--text-md);
  margin-bottom: 16px;
  line-height: 1.5;
}
.sidebar-bonus {
  background: rgba(0,212,255,0.06);
  border: 1px solid var(--border-c);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
  text-align: center;
}
.sidebar-bonus-amount {
  font-family: var(--font-d);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 1px;
}
.sidebar-bonus-text { font-size: 12px; color: var(--text-md); margin-top: 2px; }
.sidebar-cta .btn { width: 100%; margin-bottom: 8px; }

/* Sidebar checklist */
.sidebar-checks { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.sidebar-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-md);
}
.sidebar-check::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sidebar stats card */
.sidebar-stats {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-card);
}
.sidebar-stats-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.stat-row:last-child { border-bottom: none; }
.stat-row-label { color: var(--text-md); }
.stat-row-val { font-weight: 700; color: var(--cyan); }

/* Sidebar rating */
.sidebar-rating {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-card);
  text-align: center;
}
.rating-score {
  font-family: var(--font-d);
  font-size: 52px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.rating-max { font-size: 18px; color: var(--text-dim); }
.rating-stars {
  display: flex; justify-content: center; gap: 3px;
  margin: 8px 0 4px;
  font-size: 20px;
}
.star-full  { color: var(--gold); }
.star-half  { color: var(--gold); opacity: 0.5; }
.star-empty { color: var(--text-dim); }
.rating-label { font-size: 12px; color: var(--text-dim); }
.rating-trustpilot { margin-top: 12px; }
.rating-trustpilot img { height: 22px; width: auto; margin: 0 auto; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.sec-title {
  font-family: var(--font-d);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.1;
}
.sec-title .acc { color: var(--cyan); }
.sec-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }

/* =============================================
   TABBED GAMES
   ============================================= */
.games-section { margin-bottom: 36px; }

.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}
.tab-btn {
  background: none; border: none;
  padding: 8px 18px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--tr);
  border-radius: var(--r-xs) var(--r-xs) 0 0;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); background: rgba(0,212,255,0.04); }

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

.game-card {
  border-radius: var(--r-md);
  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);
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: var(--border-c);
}
.game-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.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: 8px; left: 8px;
  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(--green); color: #001a0a; }
.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(6,14,23,0.92) 0%, transparent 55%);
  display: flex; align-items: flex-end;
  justify-content: center; padding: 12px;
  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: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;
  padding: 9px; border-radius: var(--r-xs);
  transition: background var(--tr); text-decoration: none;
}
.play-btn:hover { background: #33DDFF; }

.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 GRID
   ============================================= */
.providers-section { margin-bottom: 36px; }

.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.provider-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.provider-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-cyan);
  border-color: var(--border-c);
}
.provider-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.provider-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.provider-item:hover .provider-img img { transform: scale(1.05); }
.provider-name {
  display: block; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--text-md);
  padding: 6px; border-top: 1px solid var(--border);
  transition: color var(--tr);
}
.provider-item:hover .provider-name { color: var(--cyan); }

/* =============================================
   REVIEW TABLE
   ============================================= */
.review-table-wrap {
  margin: 1.5rem 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-card);
  border: 1px solid var(--border);
}
.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(0,212,255,0.04); }
.review-table td { padding: 11px 16px; vertical-align: middle; }
.review-table td:first-child {
  font-weight: 600; color: var(--text);
  background: rgba(21,34,54,0.6); width: 40%;
}
.review-table td:last-child { color: var(--text-md); background: rgba(15,32,53,0.6); }

/* =============================================
   PROSE — SEO content
   ============================================= */
.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(--cyan);
  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(--cyan); 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(0,212,255,0.07); 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(0,212,255,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 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(--cyan); font-weight: 700; }
.prose ul li::marker, .list-content.list-ul li::marker { color: var(--cyan); }

/* 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: var(--border-c); 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; }

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

/* =============================================
   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; box-shadow: var(--sh-card); }
.pros-head, .cons-head { padding: 10px 16px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pros-head { background: rgba(0,230,118,0.1); color: var(--green); border-bottom: 2px solid var(--green); }
.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(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-body li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* =============================================
   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(--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(0,212,255,0.05); padding-left: 13px;
}

/* =============================================
   PAYMENT METHODS
   ============================================= */
.payments-section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13,27,42,0.5);
  margin: 2rem 0;
}
.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;
  display: flex; align-items: center; justify-content: center;
  min-width: 76px; height: 42px; transition: all var(--tr);
}
.pay-item:hover { border-color: var(--border-c); box-shadow: 0 0 10px rgba(0,212,255,0.1); }
.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); letter-spacing: 0.2px; }

/* =============================================
   FAQ
   ============================================= */
.faq-section { margin: 2rem 0; }
.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: var(--border-c); }
.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(--cyan); background: rgba(0,212,255,0.03); }
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(--cyan); background: rgba(0,212,255,0.03); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,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(0,212,255,0.16); 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: 28px; 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(--cyan-glow); border-color: var(--border-c); 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(0,212,255,0.07);
  border: 1.5px solid rgba(0,212,255,0.25);
  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 ≤ 1100px
   ============================================= */
@media (max-width: 1100px) {
  :root { --sidebar-w: 280px; }
  .providers-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

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

  .hero-inner { grid-template-columns: 1fr; padding: 36px 0 40px; gap: 28px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 56px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; }
  .hero-ticker { flex-direction: column; text-align: center; gap: 8px; }

  .page-split { grid-template-columns: 1fr; }
  .sticky-sidebar { display: none; }

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

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

  .hero-title { font-size: 42px; }
  .tab-panel.active { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

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

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

  .page-split { padding: 24px 0 40px; }
  .payments-section { padding: 1.5rem 0; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 34px; }
  .tab-panel.active { gap: 6px; }
}
