:root {
  --bg: #09090f;
  --panel: rgba(255,255,255,.07);
  --panel-strong: rgba(255,255,255,.11);
  --text: #ffffff;
  --muted: #a1a1aa;
  --blue: #00d4ff;
  --purple: #8b5cf6;
  --green: #00ff99;
  --border: rgba(255,255,255,.13);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0,212,255,.18), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(139,92,246,.22), transparent 28%),
    linear-gradient(180deg, #09090f, #11111a 55%, #07070c);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.age-banner {
  text-align: center;
  padding: .65rem 1rem;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  color: #fff;
  font-size: .9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(9,9,15,.72);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1180px;
  margin: auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: .7rem; font-weight: 900; letter-spacing: -.03em; }
.logo-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 0 30px rgba(0,212,255,.35);
}
.dot { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 1.35rem; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: #fff; }
.nav-cta { color: #fff !important; padding: .7rem 1rem; border-radius: 999px; background: var(--panel-strong); border: 1px solid var(--border); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px; }

.section { max-width: 1180px; margin: auto; padding: 6rem 1.25rem; position: relative; }
.hero { min-height: 78vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 460px; gap: 4rem; align-items: center; width: 100%; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: .78rem; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 8vw, 6.4rem); line-height: .9; letter-spacing: -.08em; margin: 1rem 0 1.2rem; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; margin-bottom: 1rem; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy p { max-width: 620px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 1rem; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: .85rem 1.2rem; border-radius: 999px; font-weight: 800; border: 1px solid var(--border); }
.btn.primary { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; box-shadow: 0 12px 40px rgba(0,212,255,.22); }
.btn.secondary { background: var(--panel); }
.fine-print { font-size: .86rem !important; }

.hero-card { position: relative; padding: 1.25rem; border-radius: 32px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid var(--border); box-shadow: var(--shadow); }
.live-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .75rem; border-radius: 999px; background: rgba(0,255,153,.11); color: var(--green); font-weight: 800; }
.live-badge span { width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 16px var(--green); }
.game-preview { margin-top: 1.2rem; padding: 2rem; border-radius: 24px; background: rgba(0,0,0,.28); border: 1px solid var(--border); }
.chip { font-size: 3rem; }
.odds-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1.5rem 0; }
.odds-row button, .game-card button { border: 1px solid var(--border); background: var(--panel); color: #fff; border-radius: 16px; padding: 1rem; font: inherit; cursor: pointer; }
.progress-wrap span { display: block; color: var(--muted); margin-bottom: .5rem; font-size: .9rem; }
.progress { height: 10px; background: rgba(255,255,255,.1); border-radius: 999px; overflow: hidden; }
.progress div { width: 68%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--green)); animation: pulseWidth 2.5s infinite alternate; }
.floating-card { position: absolute; padding: .75rem 1rem; border-radius: 18px; background: #151520; border: 1px solid var(--border); box-shadow: var(--shadow); font-weight: 800; animation: float 4s ease-in-out infinite; }
.card-a { left: -30px; bottom: 80px; }
.card-b { right: -20px; top: 90px; animation-delay: 1s; }
.glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.glow-one { background: var(--blue); left: -90px; top: 90px; }
.glow-two { background: var(--purple); right: -80px; bottom: 70px; }

.stats, .feature-grid, .games-grid, .testimonials, .timeline { display: grid; gap: 1rem; }
.stats { grid-template-columns: repeat(4, 1fr); padding-top: 1rem; }
.stat, .feature, .game-card, .step, .quote, .responsible { background: var(--panel); border: 1px solid var(--border); border-radius: 26px; padding: 1.4rem; }
.stat strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.stat span, .quote span { color: var(--muted); }
.section-heading { max-width: 680px; margin-bottom: 2rem; }
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature span { font-size: 2rem; }
.games-grid { grid-template-columns: repeat(4, 1fr); }
.game-card div { font-size: 3rem; margin-bottom: 1rem; }
.game-card button { width: 100%; margin-top: 1rem; }
.timeline { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step b { color: var(--blue); font-size: 1.6rem; }
.testimonials { grid-template-columns: repeat(3, 1fr); }
.quote { font-size: 1.15rem; font-weight: 800; }
.quote span { display: block; margin-top: 1rem; font-size: .95rem; font-weight: 600; }
.responsible { text-align: center; max-width: 860px; }
.responsible p { margin-inline: auto; max-width: 650px; }

.footer { border-top: 1px solid var(--border); padding: 2rem 1.25rem; text-align: center; color: var(--muted); }
.footer-links { display: flex; justify-content: center; gap: 1rem; margin: .8rem 0; }
.footer-links a { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulseWidth { from { width: 50%; } to { width: 84%; } }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; inset: 100% 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; background: #101018; border: 1px solid var(--border); border-radius: 20px; }
  .nav-links.open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats, .feature-grid, .games-grid, .timeline, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .hero-card { max-width: 520px; }
}

@media (max-width: 560px) {
  .section { padding: 4rem 1rem; }
  .stats, .feature-grid, .games-grid, .timeline, .testimonials { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .card-a, .card-b { display: none; }
}
