@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #0b1d3a;
  --sky: #4ea8de;
  --electric: #48bfe3;
  --pale: #e8f4f8;
  --white: #ffffff;
  --dark-text: #1a2a3a;
  --mid-text: #5a6a7a;
  --glow: rgba(78,168,222,0.15);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--pale);
  color: var(--dark-text);
  line-height: 1.7;
}

h1,h2,h3,h4 {
  font-family: 'Orbitron', sans-serif;
  color: var(--navy);
}

a { color: var(--sky); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--electric); }

/* Top Navigation */
.topnav {
  background: var(--white);
  box-shadow: 0 1px 10px rgba(11,29,58,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.topnav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 66px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 1px;
}

.brand-mark svg { width: 36px; height: 36px; }

.nav-list { display: flex; gap: 1.8rem; list-style: none; }

.nav-list a {
  color: var(--mid-text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s;
}

.nav-list a:hover,
.nav-list a.on { color: var(--sky); }

.mob-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mob-menu span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero Panel */
.launch-panel {
  background: linear-gradient(135deg, var(--navy), #143a6b);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.launch-panel::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,168,222,0.12), transparent 70%);
  top: -200px;
  right: -100px;
}

.launch-panel h1 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.launch-panel p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  position: relative;
}

.sky-btn {
  display: inline-block;
  background: var(--sky);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}

.sky-btn:hover {
  background: var(--electric);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(78,168,222,0.4);
}

/* Content Blocks */
.block {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.block-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

/* Three col feature */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-tile {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(11,29,58,0.04);
  border-top: 4px solid var(--sky);
  transition: 0.3s;
}

.feature-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(78,168,222,0.1);
}

.tile-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.feature-tile h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* Game embed */
.game-frame {
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 40px rgba(11,29,58,0.15);
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Two columns */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.col-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(11,29,58,0.04);
}

.col-card h3 { margin-bottom: 0.7rem; font-size: 1.2rem; }

/* Metric strip */
.metric-strip {
  display: flex;
  justify-content: space-around;
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem 1rem;
  color: var(--white);
  margin: 2rem 0;
}

.metric { text-align: center; }

.metric-val {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sky);
}

.metric-lbl { font-size: 0.85rem; opacity: 0.7; margin-top: 0.2rem; }

/* Page text */
.content-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.content-page h1 { font-size: 2.2rem; text-align: center; margin-bottom: 1.5rem; }
.content-page h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
.content-page p { margin-bottom: 1rem; color: var(--mid-text); }
.content-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-page li { margin-bottom: 0.5rem; color: var(--mid-text); }

/* Footer */
.base-footer {
  background: var(--navy);
  color: var(--pale);
  padding: 3rem 2rem;
  text-align: center;
}

.base-footer-inner { max-width: 1400px; margin: 0 auto; }

.base-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.base-links a { color: var(--pale); font-size: 0.9rem; }
.base-links a:hover { color: var(--sky); }

.rg-bar {
  border-top: 1px solid rgba(78,168,222,0.2);
  padding-top: 1.5rem;
}

.rg-bar p { font-size: 0.8rem; opacity: 0.5; margin-bottom: 0.6rem; }
.rg-bar a { color: var(--sky); margin: 0 0.7rem; font-size: 0.85rem; }

/* Age verify */
.verify-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,29,58,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verify-dialog {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.verify-dialog h2 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.verify-dialog p { color: var(--mid-text); margin-bottom: 2rem; }

.verify-btns { display: flex; gap: 1rem; justify-content: center; }

.verify-btns button {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid var(--sky);
  transition: 0.3s;
}

.v-yes { background: var(--sky); color: white; }
.v-yes:hover { background: var(--electric); border-color: var(--electric); }

.v-no { background: transparent; color: var(--sky); }
.v-no:hover { background: var(--glow); }

.v-blocked { display: none; }
.v-blocked h3 { color: #e63946; font-size: 1.3rem; }

@media (max-width: 768px) {
  .mob-menu { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  }
  .nav-list.open { display: flex; }
  .launch-panel h1 { font-size: 1.7rem; }
  .features { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .metric-strip { flex-direction: column; gap: 1.5rem; }
  .game-frame iframe { height: 400px; }
  .base-links { flex-direction: column; align-items: center; }
}
