:root {
  --bg: #0a0a0f;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8888a0;
  --accent: #d4a843;
  --accent-glow: rgba(212, 168, 67, 0.15);
  --accent-bright: #f0c95c;
  --powerball: #e23636;
  --mega: #1a6bc4;
  --fantasy: #2eae5b;
  --lucky: #9b59d0;
  --daily3: #e08830;
  --daily4: #30b8c4;
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--mega);
  bottom: -100px;
  left: -50px;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--lucky);
  top: 40%;
  left: 60%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-bright);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--fg);
}

.hero-cta {
  display: inline-block;
  padding: 16px 36px;
  background: var(--accent);
  color: #000;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hero-cta:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.28);
}

.hero-games {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.game-pill {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: all 0.2s;
}

.game-pill:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* === GAMES === */
.games {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.games-header {
  margin-bottom: 60px;
}

.games-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 16px;
}

.games-header p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.25s, transform 0.25s;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-powerball:hover { border-color: var(--powerball); }
.game-mega:hover { border-color: var(--mega); }
.game-fantasy:hover { border-color: var(--fantasy); }
.game-lucky:hover { border-color: var(--lucky); }
.game-daily3:hover { border-color: var(--daily3); }
.game-daily4:hover { border-color: var(--daily4); }

.game-numbers {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.num {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-family: 'Space Grotesk', monospace;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.game-powerball .num-special { background: var(--powerball); color: #fff; }
.game-mega .num-special { background: var(--mega); color: #fff; }
.game-lucky .num-special { background: var(--lucky); color: #fff; }

.game-card h3 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}

.game-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === FEATURES === */
.features {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.features-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.feature-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-main h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 20px;
}

.feature-main p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.feature-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
}

.feature-item h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 20px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 60px;
}

.closing-stat-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.stat-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 4px;
}

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

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
  opacity: 0.7;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }

  .features-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .closing-stat-row {
    flex-direction: column;
    gap: 32px;
  }

  .hero {
    padding: 80px 20px 60px;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .game-pill {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 16px;
  }
}