@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

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

:root {
  --neon-blue: #00d4ff;
  --neon-purple: #b829dd;
  --dark-bg: #0a0a1a;
  --card-bg: rgba(15, 15, 40, 0.85);
  --text-primary: #e0e6f0;
  --text-muted: #8899aa;
  --accent-gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; letter-spacing: 1px; }

a { color: var(--neon-blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--neon-purple); }

/* NAV */
.top-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,26,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,212,255,0.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 64px;
}

.brand {
  font-family: 'Orbitron', sans-serif; font-weight: 900; font-size: 1.3rem;
  background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.brand svg { height: 28px; width: 28px; vertical-align: middle; margin-right: 8px; }

.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.nav-links a:hover, .nav-links a.active { color: var(--neon-blue); }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--neon-blue); margin: 6px 0; transition: 0.3s; }

/* HERO */
.hero-section {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 2rem 60px;
  background: radial-gradient(ellipse at 50% 30%, rgba(0,212,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(184,41,221,0.06) 0%, transparent 50%),
              var(--dark-bg);
}

.hero-section h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.hero-section h1 span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-section p { font-size: 1.15rem; color: var(--text-muted); max-width: 640px; margin-bottom: 2rem; }

.badge-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.badge {
  background: var(--card-bg); border: 1px solid rgba(0,212,255,0.2);
  padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.85rem;
  font-family: 'Orbitron', sans-serif; letter-spacing: 1px;
}

.cta-btn {
  display: inline-block; padding: 0.85rem 2.5rem; border-radius: 6px;
  background: var(--accent-gradient); color: #fff; font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.3s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(0,212,255,0.4); }

/* SECTIONS */
.section { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.5rem; text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

.info-card {
  background: var(--card-bg); border: 1px solid rgba(0,212,255,0.12);
  border-radius: 12px; padding: 2rem; transition: border-color 0.3s;
}
.info-card:hover { border-color: var(--neon-purple); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--neon-blue); }
.info-card p { color: var(--text-muted); font-size: 1rem; }

/* GAME EMBED */
.game-wrapper { width: 100%; max-width: 960px; margin: 2rem auto; }
.game-wrapper iframe {
  width: 100%; height: 600px; border: 2px solid rgba(0,212,255,0.2);
  border-radius: 12px; background: #000;
}

/* STATS BAR */
.stats-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
  padding: 2rem; background: var(--card-bg); border-radius: 12px;
  border: 1px solid rgba(0,212,255,0.12); margin: 3rem auto; max-width: 1200px;
}
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Orbitron', sans-serif; font-size: 2rem; color: var(--neon-blue); font-weight: 900; }
.stat-item .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.3rem; }

/* FOOTER */
.site-footer {
  background: rgba(5,5,15,0.95); border-top: 1px solid rgba(0,212,255,0.1);
  padding: 3rem 2rem; text-align: center;
}
.site-footer p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--neon-blue); }

/* TEXT PAGE */
.text-page { padding-top: 100px; max-width: 860px; margin: 0 auto; padding-bottom: 60px; padding-left: 2rem; padding-right: 2rem; }
.text-page h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1.5rem; }
.text-page h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; text-align: left; }
.text-page p, .text-page li { color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem; }
.text-page ul { padding-left: 1.5rem; }

/* AGE GATE */
.age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,5,15,0.97); display: flex; align-items: center; justify-content: center;
}
.age-box {
  background: var(--card-bg); border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px; padding: 3rem; text-align: center; max-width: 420px; width: 90%;
}
.age-box h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.age-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button {
  padding: 0.75rem 2rem; border-radius: 6px; border: none; cursor: pointer;
  font-family: 'Orbitron', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
}
.age-yes { background: var(--accent-gradient); color: #fff; }
.age-no { background: transparent; border: 1px solid var(--neon-blue) !important; color: var(--neon-blue); }

.hidden { display: none !important; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%;
    background: rgba(10,10,26,0.98); padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid rgba(0,212,255,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .game-wrapper iframe { height: 350px; }
  .hero-section { padding-top: 80px; }
}
