@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --black: #050510;
  --dark-panel: #0C0C20;
  --electric: #00B4FF;
  --electric-dim: #007ACC;
  --neon-glow: rgba(0,180,255,0.15);
  --white: #EEF2F7;
  --gray: #8A9BB5;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

a { color: var(--electric); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--electric-dim); }

/* NAV */
.nav-bar {
  background: var(--dark-panel);
  border-bottom: 1px solid rgba(0,180,255,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 58px;
}

.logo-mark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark svg { width: 28px; height: 28px; }

.links { display: flex; gap: 1.5rem; list-style: none; }
.links a {
  color: var(--gray);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.links a:hover, .links a.sel { color: var(--electric); }

.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.ham-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--electric);
  margin: 5px 0;
}

/* HERO */
.space-hero {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 20%, rgba(0,180,255,0.06) 0%, transparent 70%);
}
.space-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(2px 2px at 10% 70%, rgba(0,180,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}
.space-hero h1 {
  font-size: 3.5rem;
  letter-spacing: 4px;
  position: relative;
  z-index: 1;
}
.space-hero h1 .glow { color: var(--electric); text-shadow: 0 0 20px rgba(0,180,255,0.5); }
.space-hero p {
  position: relative;
  z-index: 1;
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 1rem auto 0;
}

/* NOTICE PILLS */
.pill-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem;
}
.pill {
  background: var(--dark-panel);
  border: 1px solid rgba(0,180,255,0.25);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: var(--electric);
  font-weight: 600;
}

/* GAME */
.game-zone {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.game-embed {
  background: var(--dark-panel);
  border: 1px solid var(--electric);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 40px var(--neon-glow);
}
.game-embed iframe { width: 100%; height: 620px; border: none; display: block; }

/* THREE-COL */
.tri-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.t-card {
  background: var(--dark-panel);
  padding: 2rem;
  border-radius: 6px;
  border-bottom: 3px solid var(--electric);
  text-align: center;
}
.t-card h3 { color: var(--electric); margin-bottom: 0.6rem; font-size: 1.2rem; }
.t-card p { color: var(--gray); font-size: 0.9rem; }

/* STATS */
.stat-banner {
  background: var(--dark-panel);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}
.s-item { text-align: center; }
.s-item .s-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--electric);
  text-shadow: 0 0 10px var(--neon-glow);
}
.s-item .s-txt { color: var(--gray); font-size: 0.85rem; }

/* TEXT PAGES */
.article {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.article h1 {
  color: var(--electric);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}
.article h2 {
  color: var(--electric-dim);
  font-size: 1.3rem;
  margin: 2rem 0 0.7rem;
  letter-spacing: 1px;
}
.article p { color: var(--gray); margin-bottom: 1rem; }
.article ul { margin: 1rem 0 1rem 1.5rem; color: var(--gray); }
.article ul li { margin-bottom: 0.4rem; }

/* PLAY */
.play-head { text-align: center; padding: 3rem 2rem 1rem; }
.play-head h1 { color: var(--electric); font-size: 2.4rem; letter-spacing: 3px; }
.play-head p { color: var(--gray); max-width: 600px; margin: 0.5rem auto 0; }
.play-note {
  max-width: 700px;
  margin: 1.5rem auto;
  background: var(--dark-panel);
  border: 1px solid rgba(0,180,255,0.2);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
}

/* FOOTER */
.base {
  background: var(--dark-panel);
  border-top: 1px solid rgba(0,180,255,0.15);
  padding: 2rem;
  text-align: center;
}
.rg-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.rg-links a { color: var(--electric); font-size: 0.9rem; }
.base-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* AGE GATE */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5,5,16,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate-box {
  background: var(--dark-panel);
  border: 2px solid var(--electric);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
  box-shadow: 0 0 50px var(--neon-glow);
}
.gate-box h2 { color: var(--electric); margin-bottom: 0.8rem; font-size: 1.6rem; letter-spacing: 2px; }
.gate-box p { color: var(--gray); margin-bottom: 1.5rem; }
.gate-btns { display: flex; gap: 1rem; justify-content: center; }
.g-yes, .g-no {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}
.g-yes { background: var(--electric); color: var(--black); }
.g-yes:hover { background: var(--electric-dim); }
.g-no { background: transparent; border: 2px solid var(--electric); color: var(--electric); }
.g-no:hover { background: rgba(0,180,255,0.1); }
.gate-denied { display: none; color: #FF5252; margin-top: 1rem; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .ham-btn { display: block; }
  .links {
    display: none;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: var(--dark-panel);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0,180,255,0.2);
  }
  .links.active { display: flex; }
  .nav-inner { position: relative; }
  .space-hero h1 { font-size: 2rem; }
  .tri-col { grid-template-columns: 1fr; }
  .game-embed iframe { height: 380px; }
  .stat-banner { flex-direction: column; align-items: center; }
}
