/* ==========================================================================
   WorldSlotsHub — Crypto Streamer Dark
   Inspired by: Stake, Rollbit, Shuffle, BC.Game
   ========================================================================== */

:root {
  --bg: #0f0f17;
  --bg-soft: #161623;
  --bg-card: #1c1c2e;
  --bg-elev: #242438;
  --border: #2d2d44;
  --border-soft: #232337;
  --text: #ffffff;
  --text-soft: #b8b8d0;
  --text-muted: #7c7c9a;
  --lime: #a3e635;          /* primary accent — lime green */
  --lime-glow: rgba(163,230,53,0.4);
  --blue: #3b82f6;          /* electric blue */
  --blue-glow: rgba(59,130,246,0.3);
  --orange: #f97316;        /* hot orange */
  --purple: #a855f7;        /* accent purple */
  --pink: #ec4899;
  --success: #10b981;
  --gold: #fbbf24;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1280px;
  --container-narrow: 900px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 30px var(--lime-glow);
  --shadow-blue: 0 0 24px var(--blue-glow);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(168,85,247,0.12), transparent 60%),
              radial-gradient(ellipse at bottom right, rgba(59,130,246,0.08), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--lime); text-decoration: none; transition: all .2s ease; }
a:hover { color: var(--text); filter: brightness(1.15); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 .5em 0;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 70px 0; position: relative; z-index: 1; }

/* ---------- Country banner ---------- */
.country-banner {
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  display: none;
  font-weight: 600;
  position: relative;
  z-index: 110;
}
.country-banner.show { display: block; }
.country-banner a { color: var(--lime); font-weight: 700; margin-left: 8px; text-decoration: underline; }
.country-banner .close {
  float: right;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(15,15,23,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--lime), var(--blue));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(163,230,53,0.3);
}
.logo .logo-accent { color: var(--lime); }

.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}
.nav a:hover { color: var(--lime); }
.nav .nav-cta {
  background: linear-gradient(135deg, var(--lime), #84cc16);
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--lime-glow);
}
.nav .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--lime-glow); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(163,230,53,0.08), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(59,130,246,0.08), transparent 50%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163,230,53,0.1);
  border: 1px solid rgba(163,230,53,0.3);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--lime);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--lime); }
  50% { opacity: 0.6; box-shadow: 0 0 16px var(--lime); }
}
.hero h1 {
  background: linear-gradient(135deg, #ffffff 0%, #b8b8d0 60%, var(--lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
  max-width: 920px;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-soft);
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta > span {
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-soft);
}
.hero-meta > span strong { color: var(--text); }

/* ---------- Slot Top 10 (Crypto-card style) ---------- */
.slot-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.slot-row {
  display: grid;
  grid-template-columns: 70px 140px 1fr auto;
  gap: 28px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.slot-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(163,230,53,0.03));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.slot-row:hover {
  border-color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(163,230,53,0.12);
}
.slot-row:hover::before { opacity: 1; }
.slot-rank {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--text-soft), var(--text-muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slot-rank-01 { background: linear-gradient(135deg, var(--lime), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slot-rank-02 { background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slot-rank-03 { background: linear-gradient(135deg, var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.slot-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-elev);
  position: relative;
  border: 1px solid var(--border);
}
.slot-img img, .slot-img svg, .slot-img picture {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.slot-img picture img { width: 100%; height: 100%; object-fit: cover; }
.slot-row:hover .slot-img img,
.slot-row:hover .slot-img svg { transform: scale(1.06); }

.slot-info h3 { margin-bottom: 6px; font-weight: 700; }
.slot-info h3 a { color: var(--text); }
.slot-info h3 a:hover { color: var(--lime); }
.slot-info .slot-meta {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 600;
}
.slot-info .slot-meta strong { color: var(--lime); }
.slot-info p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  max-width: 600px;
}

.slot-cta { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 180px; }
.slot-cta .btn { text-align: center; white-space: nowrap; }
.slot-cta .btn-outline + .btn-primary { margin-top: -2px; }
.slot-metrics {
  display: flex;
  gap: 14px;
  text-align: right;
}
.slot-metric {
  padding: 8px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  min-width: 70px;
}
.slot-metric-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  font-weight: 600;
}
.slot-metric-value { color: var(--lime); font-weight: 700; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lime), #84cc16);
  color: var(--bg);
  box-shadow: 0 4px 16px var(--lime-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--lime-glow);
  color: var(--bg);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: white;
  box-shadow: 0 4px 16px var(--blue-glow);
}
.btn-secondary:hover { transform: translateY(-2px); color: white; }
.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: 12px; }

/* ---------- Section headers ---------- */
.section-head {
  margin-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(163,230,53,0.1);
  border-radius: 100px;
}
.section-head h2 { margin: 0; }
.section-head p {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0;
  font-size: 15px;
}

/* ---------- Stat numbers ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--lime), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Region Cards ---------- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.region-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
  text-decoration: none !important;
  color: var(--text);
  display: block;
  position: relative;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--blue), var(--purple));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.region-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(163,230,53,0.15);
  color: var(--text);
}
.region-card:hover::before { opacity: 1; }
.region-card .region-flag { font-size: 44px; margin-bottom: 14px; display: block; }
.region-card h3 { margin-bottom: 6px; color: var(--text); }
.region-card .region-meta {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 600;
}
.region-card .region-currency {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(163,230,53,0.1);
  border: 1px solid rgba(163,230,53,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--lime);
  font-size: 13px;
  margin-bottom: 12px;
}
.region-card p { font-size: 13px; color: var(--text-soft); margin: 0 0 14px 0; }
.region-card .region-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
  text-decoration: none !important;
  color: var(--text);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(163,230,53,0.1);
  color: var(--text);
}
.article-card-image {
  aspect-ratio: 16/10;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card .category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 8px;
  padding: 3px 10px;
  background: rgba(163,230,53,0.1);
  border-radius: 100px;
  display: inline-block;
  align-self: flex-start;
}
.article-card h3 { font-size: 1.15rem; margin-bottom: 10px; flex: 1; color: var(--text); }
.article-card .card-meta { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }

/* ---------- Live wins ---------- */
.live-wins {
  position: fixed;
  bottom: 20px; left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--lime);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 8px 24px rgba(163,230,53,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  z-index: 50;
  max-width: 320px;
}
.live-wins.show { opacity: 1; transform: translateY(0); }
.live-wins strong { color: var(--lime); display: block; margin-bottom: 2px; }
.live-wins .win-meta { color: var(--text-muted); font-size: 11px; margin-top: 4px; }

/* ---------- Online counter ---------- */
.online-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.online-counter::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(163,230,53,0.2);
  animation: pulse-dot 2s infinite;
}
.online-counter span { color: var(--lime); font-family: var(--font-mono); }

/* ---------- Prose ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose h2 { margin-top: 2em; margin-bottom: 0.7em; color: var(--text); }
.prose h3 { margin-top: 1.5em; margin-bottom: 0.5em; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1.2em; }
.prose ul li, .prose ol li { margin-bottom: 0.5em; }
.prose ul li::marker { color: var(--lime); }
.prose ol li::marker { color: var(--lime); font-weight: 700; }
.prose strong { color: var(--text); }
.prose blockquote {
  border-left: 3px solid var(--lime);
  padding: 20px 24px;
  margin: 1.5em 0;
  font-size: 1.15em;
  color: var(--text);
  background: rgba(163,230,53,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* ---------- Slot page ---------- */
.slot-hero {
  padding: 60px 0;
  background: radial-gradient(circle at 30% 50%, rgba(163,230,53,0.08), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.slot-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.slot-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-elev);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}
.slot-hero-image svg, .slot-hero-image img, .slot-hero-image picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.slot-hero-image picture img { width: 100%; height: 100%; object-fit: cover; }

.breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--lime); }

.slot-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--lime), var(--blue));
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 14px;
}

.slot-provider {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.slot-provider strong { color: var(--lime); }

.slot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0;
}
.slot-stat {
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all .25s ease;
}
.slot-stat:hover { border-color: var(--lime); transform: translateY(-2px); }
.slot-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.slot-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.pros-cons > div {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pros-cons .pros { border-left: 3px solid var(--success); }
.pros-cons .cons { border-left: 3px solid var(--orange); }
.pros-cons h4 {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
}
.pros-cons .pros h4 { color: var(--success); }
.pros-cons .cons h4 { color: var(--orange); }
.pros-cons ul { margin: 0; padding-left: 18px; }
.pros-cons li { margin-bottom: 8px; font-size: 14px; color: var(--text-soft); }

/* ---------- Tables ---------- */
.editorial-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.editorial-table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  width: 35%;
}
.editorial-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
}
.editorial-table tr:last-child th,
.editorial-table tr:last-child td { border-bottom: none; }
.rtp-high { color: var(--lime); font-weight: 700; }
.rtp-med { color: var(--gold); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  gap: 20px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: var(--lime); }
.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--lime);
  transition: transform .25s ease;
  font-weight: 300;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
  color: var(--text-soft);
}
.faq-item.open .faq-answer { max-height: 800px; padding: 0 24px 20px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Bonus Calculator ---------- */
.calc-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
}
.calc-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--blue), var(--purple));
  pointer-events: none;
}
.calc-widget h3 { margin-bottom: 24px; color: var(--text); }
.calc-field { margin-bottom: 18px; }
.calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc-field input,
.calc-field select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--bg-elev);
  color: var(--text);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--lime); }
.calc-result {
  background: var(--bg);
  border: 1px solid var(--lime);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 20px;
  box-shadow: 0 0 30px rgba(163,230,53,0.15);
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--text-soft);
}
.calc-result-row:last-child {
  border-bottom: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--lime);
  padding-top: 16px;
  margin-top: 6px;
  border-top: 2px solid var(--lime);
}

/* ---------- Comparison table ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 30px 0;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .25s ease;
}
.compare-card:hover { border-color: var(--lime); transform: translateY(-2px); }
.compare-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.compare-card .provider { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.compare-card .compare-rows { font-size: 13px; }
.compare-card .compare-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}
.compare-card .compare-row:last-child { border-bottom: none; }
.compare-card .compare-row span:first-child { color: var(--text-muted); }
.compare-card .compare-row strong { color: var(--lime); font-family: var(--font-mono); }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a12;
  color: var(--text-muted);
  padding: 70px 0 30px;
  margin-top: 100px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand h4 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col h5 {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); font-size: 13px; }
.footer-col a:hover { color: var(--lime); }
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.footer-disclaimer strong { color: var(--text-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badges { display: flex; gap: 10px; }
.trust-badge {
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  font-weight: 700;
}

/* ---------- Cookie ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--lime);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--lime-glow);
  z-index: 200;
  transform: translateY(150%);
  transition: transform .4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { margin-bottom: 8px; color: var(--text); }
.cookie-banner p { font-size: 13px; margin-bottom: 16px; color: var(--text-soft); }
.cookie-buttons { display: flex; gap: 10px; }

/* ---------- Sticky play ---------- */
.sticky-play {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--lime);
  padding: 14px 20px;
  z-index: 90;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sticky-play a {
  display: block;
  background: linear-gradient(135deg, var(--lime), #84cc16);
  color: var(--bg);
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .slot-row {
    grid-template-columns: 50px 100px 1fr;
    gap: 16px;
    padding: 16px;
  }
  .slot-row .slot-cta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border-soft); min-width: 0; }
  .slot-row .slot-cta .slot-metrics { flex: 1 1 auto; }
  .slot-row .slot-cta .btn { flex: 1 1 45%; min-width: 120px; }
  .slot-hero-grid { grid-template-columns: 1fr; }
  .slot-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .slot-stat { padding: 12px; }
  .slot-stat-value { font-size: 1.2rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-soft);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border);
    align-items: stretch;
  }
  .nav.mobile-open a { padding: 12px; }
  .mobile-toggle { display: block; }
  .hero { padding: 60px 0 50px; }
  section { padding: 50px 0; }
  .slot-rank { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .sticky-play { display: block; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-meta { gap: 10px; }
  .hero-meta > span { font-size: 12px; padding: 8px 14px; }
}
