:root {
  --bg: #050814;
  --bg2: #090d1f;
  --bg3: #0d1226;
  --accent: #0ea5e9;
  --gold: #f0c040;
  --gold2: #c8860a;
  --text: #e2eaf8;
  --muted: #8899bb;
  --card-bg: #0b1220;
  --card-border: rgba(14,165,233,0.18);
  --red: #ef4444;
  --green: #22c55e;
  --radius: 14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,8,20,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14,165,233,0.15);
  padding: 0 24px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
}
.logo svg { width: 38px; height: 38px; flex-shrink: 0; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 24px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color .2s;
}
nav a:hover { color: var(--accent); }
.btn-header {
  background: linear-gradient(135deg, var(--accent), #0369a1);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.btn-header:hover { opacity: .88; transform: translateY(-1px); }

/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.38) saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,20,.92) 40%, rgba(5,8,20,.35) 100%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,192,64,.12);
  border: 1px solid rgba(240,192,64,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 620px;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 1.1rem;
  color: #b0c4de;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f0c040 0%, #c8860a 100%);
  color: #0a0600;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 15px 34px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(240,192,64,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,192,64,.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.4);
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(14,165,233,.22); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}
.stat { display: flex; flex-direction: column; }
.stat-val { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .8rem; color: var(--muted); margin-top: 3px; }

/* ===== SECTION WRAPPER ===== */
.section { padding: 80px 24px; max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section-title span { color: var(--accent); }
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  max-width: 540px;
  margin: 0 auto 48px;
}
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,.3), transparent); margin: 0 24px; }

/* ===== BONUS STRIP ===== */
.bonus-strip {
  background: linear-gradient(135deg, #0f1b35 0%, #091627 100%);
  border-top: 1px solid rgba(14,165,233,.2);
  border-bottom: 1px solid rgba(14,165,233,.2);
  padding: 36px 24px;
}
.bonus-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bonus-info h2 { font-size: 1.5rem; font-weight: 800; }
.bonus-info h2 span { color: var(--gold); }
.bonus-info p { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.bonus-items { display: flex; gap: 20px; flex-wrap: wrap; }
.bonus-pill {
  background: rgba(240,192,64,.1);
  border: 1px solid rgba(240,192,64,.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-align: center;
}
.bonus-pill small { display: block; font-size: .72rem; font-weight: 400; color: var(--muted); }

/* ===== GAME CARDS ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.game-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(14,165,233,.18);
  border-color: rgba(14,165,233,.45);
}
.game-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.game-card-body { padding: 12px 14px; }
.game-card-name { font-weight: 700; font-size: .95rem; }
.game-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(14,165,233,.1);
  border-radius: 4px;
  padding: 1px 7px;
  margin-top: 5px;
}

/* ===== CATEGORY GRID ===== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.cat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .2s;
  text-decoration: none;
  color: var(--text);
}
.cat-card:hover { border-color: rgba(14,165,233,.45); transform: translateY(-4px); }
.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.cat-icon.blue { background: rgba(14,165,233,.15); }
.cat-icon.gold { background: rgba(240,192,64,.12); }
.cat-icon.green { background: rgba(34,197,94,.12); }
.cat-icon.red { background: rgba(239,68,68,.12); }
.cat-card h3 { font-size: 1.05rem; font-weight: 700; }
.cat-card p { font-size: .85rem; color: var(--muted); }

/* ===== SEO TEXT ===== */
.seo-section {
  background: var(--bg2);
  border-top: 1px solid rgba(14,165,233,.1);
  border-bottom: 1px solid rgba(14,165,233,.1);
  padding: 72px 24px;
}
.seo-inner { max-width: 960px; margin: 0 auto; }
.seo-inner h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.seo-inner h2 span { color: var(--accent); }
.seo-inner h3 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; color: var(--gold); }
.seo-inner p { color: #9fb3cf; font-size: .97rem; line-height: 1.75; margin-bottom: 12px; }
.seo-inner ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px 24px;
  margin: 12px 0 18px;
}
.seo-inner ul li { color: #9fb3cf; font-size: .93rem; padding-left: 18px; position: relative; }
.seo-inner ul li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); font-size: .65rem; top: 4px; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0369a1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step-card h4 { font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--muted); }

/* ===== PROVIDERS ===== */
.providers-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.provider-pill {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.provider-pill:hover { color: var(--text); border-color: rgba(14,165,233,.35); }

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg2);
  border-top: 1px solid rgba(14,165,233,.1);
  border-bottom: 1px solid rgba(14,165,233,.1);
  padding: 72px 24px;
}
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(14,165,233,.35); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(14,165,233,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform .3s, background .2s;
  color: var(--accent);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(14,165,233,.25); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: #9fb3cf;
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, #071526 0%, #0d1f3a 50%, #071526 100%);
  border-top: 1px solid rgba(240,192,64,.2);
  border-bottom: 1px solid rgba(240,192,64,.2);
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-section h2 span { color: var(--gold); }
.cta-section p { color: var(--muted); max-width: 480px; margin: 0 auto 32px; font-size: .97rem; }

/* ===== FOOTER ===== */
footer {
  background: #030510;
  border-top: 1px solid rgba(14,165,233,.1);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-col { flex: 1; min-width: 200px; }
.footer-col h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: .85rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: var(--muted); font-size: .82rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: #445; }
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo svg { width: 28px; height: 28px; }
.footer-logo span { font-weight: 700; font-size: .95rem; }
.age-badge {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
}

/* ===== NOTICE BAR ===== */
.notice-bar {
  background: linear-gradient(90deg, #061020, #0b1830, #061020);
  border-bottom: 1px solid rgba(240,192,64,.25);
  text-align: center;
  padding: 9px 16px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .03em;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 4px 24px rgba(240,192,64,.35); }
  50% { box-shadow: 0 8px 48px rgba(240,192,64,.6); }
}
.btn-primary.pulse { animation: pulse-gold 2.2s ease-in-out infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hero-stats { gap: 20px; }
  .bonus-strip-inner { flex-direction: column; }
}
