:root {
  --bg-dark: #0a0e17;
  --bg-card: #121a2b;
  --bg-card-hover: #1a2540;
  --gold: #f5c842;
  --gold-dark: #d4a017;
  --green: #00c853;
  --green-dark: #00a844;
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --border: rgba(245, 200, 66, 0.15);
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --cta-glow: 0 0 24px rgba(0, 200, 83, 0.35);
  --max-width: 900px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--gold); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--cta-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(0, 200, 83, 0.5);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(245, 200, 66, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(0, 200, 83, 0.08) 0%, transparent 50%),
    var(--bg-dark);
  padding: 60px 20px 50px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), #ffe066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 28px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTAs ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--cta-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 200, 83, 0.55);
  text-decoration: none;
  color: #fff;
}

.cta-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
  box-shadow: 0 0 24px rgba(245, 200, 66, 0.3);
}

.cta-btn--gold:hover { color: #0a0e17; box-shadow: 0 0 36px rgba(245, 200, 66, 0.45); }

.cta-btn--sm {
  font-size: 0.9rem;
  padding: 10px 24px;
}

.cta-block {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), rgba(245, 200, 66, 0.08));
  border: 1px solid rgba(0, 200, 83, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-block h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── TOC ── */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 40px auto;
  max-width: var(--max-width);
}

.toc h2 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.toc ol {
  columns: 2;
  column-gap: 32px;
  padding-left: 20px;
}

.toc li { margin-bottom: 8px; break-inside: avoid; }
.toc a { color: var(--text-muted); font-size: 0.95rem; }
.toc a:hover { color: var(--gold); }

/* ── Content ── */
.content { max-width: var(--max-width); margin: 0 auto; padding: 20px; }

section { margin-bottom: 56px; }

section h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.02em;
}

section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--gold);
}

section p { margin-bottom: 16px; color: var(--text-muted); }
section p strong { color: var(--text); }

section ul, section ol {
  margin: 0 0 16px 20px;
  color: var(--text-muted);
}

section li { margin-bottom: 8px; }

/* ── Listicle items ── */
.listicle-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.listicle-item:hover { border-color: rgba(245, 200, 66, 0.35); }

.listicle-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0e17;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.listicle-item h3 { margin-top: 0; color: var(--text); }

/* ── Game grid ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.game-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.game-tile:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.game-tile-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.game-tile-provider {
  font-size: 0.68rem;
  color: var(--gold);
  margin-top: 2px;
}

.game-tile-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

.game-tile:hover .game-tile-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ── Payment cards ── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.payment-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.payment-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.payment-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── Promo cards ── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.promo-card img { width: 100%; height: 160px; object-fit: cover; }

.promo-card-body { padding: 20px; }

.promo-card h4 { margin-bottom: 8px; font-size: 1.05rem; }
.promo-card p { font-size: 0.9rem; margin-bottom: 14px; }

/* ── Comparison table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg-card);
  color: var(--gold);
  font-weight: 700;
}

.compare-table td { color: var(--text-muted); }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

.check { color: var(--green); 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-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a-inner {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ── Inline CTA strip ── */
.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 200, 83, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}

.inline-cta-text { font-weight: 600; font-size: 0.95rem; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }

.footer-cta { margin-bottom: 28px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-links a { color: var(--text-muted); font-size: 0.85rem; }

.footer-disclaimer {
  font-size: 0.78rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Floating mobile CTA ── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  text-align: center;
}

.floating-cta .cta-btn { width: 100%; font-size: 0.95rem; padding: 14px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .toc ol { columns: 1; }
  .hero { padding: 40px 16px 36px; }
  .hero-stats { gap: 16px; }
  .inline-cta { flex-direction: column; text-align: center; }
  .floating-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
