/* zenovoryxen.xyz - Navy & Electric Blue - Bold Sport-Inspired Layout */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --navy: #0a1628;
  --electric: #00b4ff;
  --neon: #00e5ff;
  --steel: #1e293b;
  --slate: #334155;
  --white: #f1f5f9;
  --text: #cbd5e1;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* HEADER */
.top-header {
  background: var(--steel);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.top-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 60px;
}

.logo-mark {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark svg { width: 30px; height: 30px; }

.top-nav { display: flex; list-style: none; gap: 1.5rem; }

.top-nav a {
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.top-nav a:hover, .top-nav a.on { border-bottom-color: var(--electric); color: var(--electric); }

.menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--electric);
  border-radius: 4px;
  padding: 4px 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--electric);
}

/* HERO */
.splash {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2341 50%, var(--steel) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.splash::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,255,0.1), transparent 70%);
}

.splash h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.splash h1 span { color: var(--electric); }

.splash p {
  font-size: 1.15rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0.85;
  position: relative;
}

.action-btn {
  display: inline-block;
  background: var(--electric);
  color: var(--navy);
  padding: 0.9rem 3rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  position: relative;
  transition: 0.3s;
}

.action-btn:hover { background: var(--neon); color: var(--navy); transform: translateY(-2px); }

/* INFO STRIP */
.info-strip {
  background: var(--electric);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-badge {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* SECTIONS */
.content-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.shaded-area {
  background: var(--steel);
  padding: 4rem 2rem;
}

.shaded-area .content-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.content-area h2, .shaded-area h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* PANELS */
.panel-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.panel {
  background: var(--navy);
  border: 1px solid var(--slate);
  border-top: 3px solid var(--electric);
  padding: 2rem;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.panel:hover { border-top-color: var(--neon); }

.panel h3 { font-size: 1.2rem; color: var(--electric); margin-bottom: 0.7rem; }
.panel p { font-size: 0.95rem; opacity: 0.8; }

/* GAME */
.game-stage {
  max-width: 960px;
  margin: 2rem auto;
  border: 2px solid var(--electric);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,180,255,0.1);
}

.game-stage iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* METRICS */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric {
  background: var(--navy);
  border: 1px solid var(--slate);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
}

.metric .fig {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--electric);
  font-weight: 700;
}

.metric .lbl {
  font-size: 0.8rem;
  opacity: 0.55;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
.bottom-footer {
  background: var(--navy);
  border-top: 2px solid var(--steel);
  padding: 2rem;
  text-align: center;
}

.bottom-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.foot-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.foot-nav a { color: var(--slate); font-size: 0.85rem; }
.foot-nav a:hover { color: var(--electric); }
.foot-copy { font-size: 0.75rem; opacity: 0.35; margin-top: 1rem; }

/* AGE GATE */
.age-screen {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-card {
  background: var(--steel);
  border: 2px solid var(--electric);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
}

.age-card h2 { font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; }
.age-card p { margin-bottom: 2rem; opacity: 0.8; }

.age-choices { display: flex; gap: 1rem; justify-content: center; }

.age-choices button {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.age-choices button:hover { transform: scale(1.05); }

.age-confirm { background: var(--electric); color: var(--navy); }
.age-deny { background: transparent; border: 2px solid var(--electric) !important; color: var(--electric); }

/* INNER PAGES */
.inner-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.inner-page h1 { font-size: 2.5rem; color: var(--white); margin-bottom: 1.5rem; }
.inner-page h2 { font-size: 1.4rem; color: var(--electric); margin-top: 2.5rem; margin-bottom: 1rem; text-align: left; }
.inner-page p { margin-bottom: 1.1rem; opacity: 0.88; }
.inner-page ul { margin: 1rem 0 1.5rem 1.5rem; }
.inner-page li { margin-bottom: 0.5rem; opacity: 0.82; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-btn { display: flex; }
  .top-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--steel);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--electric);
  }
  .top-nav.show { display: flex; }
  .splash h1 { font-size: 2.2rem; }
  .panel-row { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .game-stage iframe { height: 380px; }
}
