:root {
  --gold: #f5c518;
  --gold-dark: #c9980a;
  --dark: #0d0520;
  --dark2: #160830;
  --dark3: #1e0d3e;
  --purple: #2d1b69;
  --text: #e8deff;
  --muted: #9e8fc0;
  --red: #e63946;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,5,32,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245,197,24,0.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 48px; width: auto; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(245,197,24,0.5);
}
.logo-text span { color: #fff; }
.nav {
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav a { color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-align: center;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.35); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, #f5c518, #e0a800);
  color: #1a0800;
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(245,197,24,0.1); }
.btn-big { padding: 16px 44px; font-size: 1.1rem; border-radius: 60px; }
.btn-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(245,197,24,0); }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  overflow: hidden;
  padding: 0;
}
.hero-banner {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,5,32,0.35) 0%, rgba(13,5,32,0.75) 70%, var(--dark) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 56px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BONUS STRIP ─── */
.bonus-strip {
  background: linear-gradient(90deg, #1b0a40 0%, #2d1b69 50%, #1b0a40 100%);
  border-top: 1px solid rgba(245,197,24,0.15);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  padding: 20px 24px;
}
.bonus-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.bonus-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}
.bonus-chip .icon { font-size: 1.4rem; }
.bonus-chip strong { color: var(--gold); }

/* ─── SECTIONS ─── */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
  text-align: center;
}
.section-title .gold { color: var(--gold); }
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ─── GAMES ─── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--dark3);
  border: 1px solid rgba(245,197,24,0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,197,24,0.5);
  box-shadow: 0 12px 32px rgba(245,197,24,0.15);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.game-card-body { padding: 14px 16px 18px; }
.game-card-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.game-card-meta { font-size: 0.8rem; color: var(--muted); }
.game-card-play {
  margin-top: 12px;
  width: 100%;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(135deg, #f5c518, #e0a800);
  color: #1a0800;
  font-weight: 800;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.game-card-play:hover { opacity: 0.88; }

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--dark3);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s;
}
.benefit-card:hover { border-color: rgba(245,197,24,0.4); }
.benefit-icon { font-size: 2.6rem; margin-bottom: 16px; }
.benefit-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--gold); }
.benefit-text { font-size: 0.9rem; color: var(--muted); }

/* ─── BONUSES ─── */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: linear-gradient(135deg, var(--dark3) 0%, #1e0d50 100%);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px;
  overflow: hidden;
}
.bonus-card-head {
  background: linear-gradient(135deg, #f5c518, #c9980a);
  padding: 18px 24px;
}
.bonus-card-head h3 { font-size: 1.4rem; font-weight: 900; color: #1a0800; }
.bonus-card-head p { font-size: 0.85rem; color: rgba(26,8,0,0.7); margin-top: 2px; }
.bonus-card-body { padding: 20px 24px 24px; }
.bonus-card-body ul { list-style: none; margin-bottom: 20px; }
.bonus-card-body ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--muted);
}
.bonus-card-body ul li::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ─── FAQ ─── */
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--dark3);
  border: 1px solid rgba(245,197,24,0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(245,197,24,0.45); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── SEO TEXT ─── */
.seo-section { background: var(--dark2); }
.seo-text { max-width: 860px; margin: 0 auto; }
.seo-text h2 { font-size: 1.55rem; font-weight: 800; margin: 36px 0 14px; color: var(--gold); }
.seo-text h2:first-child { margin-top: 0; }
.seo-text h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; color: #d4c3ff; }
.seo-text p { margin-bottom: 14px; color: #c8bae8; font-size: 0.97rem; }
.seo-text ul { padding-left: 20px; margin-bottom: 14px; color: #c8bae8; font-size: 0.97rem; }
.seo-text ul li { margin-bottom: 6px; }

/* ─── CTA ─── */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1b0a40 0%, #2d1b69 50%, #1b0a40 100%);
}
.cta-section h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; }
.cta-section p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(245,197,24,0.1);
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; }
footer ul a { font-size: 0.88rem; color: var(--muted); transition: color .2s; }
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 24px 16px 40px; }
}
