/* astronyvoryx.xyz - Cosmic Deep Blue Theme */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600;700&display=swap');

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

:root {
  --space-black: #050a18;
  --nebula-blue: #0b1e3d;
  --stellar-cyan: #00d4ff;
  --plasma-white: #e8f4fc;
  --dim-silver: #8fa3b8;
  --card-glass: rgba(11, 30, 61, 0.7);
  --glow-cyan: rgba(0, 212, 255, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--space-black);
  color: var(--plasma-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

a { color: var(--stellar-cyan); text-decoration: none; transition: 0.3s; }
a:hover { color: #66e6ff; text-shadow: 0 0 8px rgba(0,212,255,0.4); }

/* TOPBAR */
.topbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(5, 10, 24, 0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
}
.topbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900; font-size: 1.35rem;
  color: var(--stellar-cyan);
  display: flex; align-items: center; gap: 0.5rem;
}
.topbar-brand svg { width: 32px; height: 32px; }
.topbar-menu { display: flex; gap: 1.6rem; list-style: none; }
.topbar-menu a {
  color: var(--dim-silver); font-size: 0.9rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.topbar-menu a:hover, .topbar-menu a.active { color: var(--stellar-cyan); }

.burger-btn {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.burger-btn span {
  display: block; width: 24px; height: 2px; background: var(--stellar-cyan);
  margin: 5px 0; transition: 0.3s;
}

/* BANNER */
.banner {
  min-height: 100vh; display: flex; align-items: center;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--space-black) 0%, #0a1832 40%, #0d2240 70%, var(--space-black) 100%);
  position: relative;
}
.banner::after {
  content: ''; position: absolute; top: 20%; right: 5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08), transparent 70%);
  filter: blur(60px);
}
.banner-inner {
  max-width: 1300px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.banner-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--stellar-cyan);
  margin-bottom: 1.2rem; line-height: 1.2;
}
.banner-text p {
  font-size: 1.1rem; color: var(--dim-silver); margin-bottom: 1rem;
}
.banner-visual {
  display: flex; flex-direction: column; gap: 1rem;
}
.info-tile {
  background: var(--card-glass);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 12px; padding: 1.4rem 1.8rem;
  backdrop-filter: blur(6px);
}
.info-tile h3 {
  font-size: 0.85rem; color: var(--stellar-cyan); margin-bottom: 0.4rem;
}
.info-tile p { font-size: 0.92rem; color: var(--dim-silver); }

/* SECTION */
.content-section {
  max-width: 1300px; margin: 0 auto; padding: 4rem 3rem;
}
.content-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--stellar-cyan); margin-bottom: 1.5rem;
}
.content-section p {
  color: var(--dim-silver); font-size: 1rem; margin-bottom: 1rem;
  max-width: 950px;
}

/* GAME CONTAINER */
.game-container {
  max-width: 1000px; margin: 2rem auto;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 0 50px rgba(0,212,255,0.08);
  background: #030810;
}
.game-container iframe {
  width: 100%; height: 600px; border: none; display: block;
}

/* STAT CARDS */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin: 3rem 0; max-width: 1300px; padding: 0 3rem;
  margin-left: auto; margin-right: auto;
}
.stat-card {
  background: var(--card-glass); border: 1px solid rgba(0,212,255,0.1);
  border-radius: 10px; padding: 1.8rem; text-align: center;
}
.stat-card .stat-num {
  font-family: 'Orbitron', sans-serif; font-size: 2rem;
  color: var(--stellar-cyan); display: block;
}
.stat-card .stat-label { color: var(--dim-silver); font-size: 0.85rem; margin-top: 0.3rem; }

/* BOTTOM BAR */
.bottom-bar {
  background: rgba(5,10,24,0.95);
  border-top: 1px solid rgba(0,212,255,0.08);
  text-align: center; padding: 2rem 2rem;
}
.bottom-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.bottom-links a { color: var(--dim-silver); font-size: 0.85rem; }
.bottom-bar p { color: #5a7088; font-size: 0.8rem; }

/* AGE GATE */
.age-wall {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(3,6,15,0.97);
  display: flex; align-items: center; justify-content: center;
}
.age-wall.hidden { display: none; }
.age-panel {
  background: var(--nebula-blue); border: 1px solid var(--stellar-cyan);
  border-radius: 14px; padding: 2.5rem 3rem; max-width: 440px; text-align: center;
  box-shadow: 0 0 40px rgba(0,212,255,0.1);
}
.age-panel h2 { font-size: 1.3rem; color: var(--stellar-cyan); margin-bottom: 1rem; }
.age-panel p { color: var(--dim-silver); margin-bottom: 1.5rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }
.age-actions button {
  padding: 0.7rem 2.2rem; border: none; border-radius: 6px;
  font-family: 'Orbitron', sans-serif; font-size: 0.9rem; cursor: pointer; transition: 0.2s;
}
.age-actions button:hover { transform: scale(1.04); }
.btn-confirm { background: var(--stellar-cyan); color: var(--space-black); font-weight: 700; }
.btn-deny { background: transparent; border: 1px solid var(--stellar-cyan) !important; color: var(--stellar-cyan); }

/* PAGE */
.page-body {
  max-width: 1300px; margin: 0 auto; padding: 6rem 3rem 4rem;
}
.page-body h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); color: var(--stellar-cyan); margin-bottom: 1.5rem; }
.page-body h2 { font-size: 1.3rem; color: #4dc8e8; margin: 2rem 0 0.7rem; }
.page-body p, .page-body li { color: var(--dim-silver); font-size: 0.98rem; margin-bottom: 0.7rem; }
.page-body ul { padding-left: 1.4rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .banner-inner { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .burger-btn { display: block; }
  .topbar-menu {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(5,10,24,0.97);
    flex-direction: column; padding: 1.5rem 2rem; gap: 0.9rem;
    transform: translateX(100%); transition: transform 0.3s;
  }
  .topbar-menu.open { transform: translateX(0); }
  .banner { padding: 5rem 1.5rem; min-height: auto; }
  .game-container iframe { height: 380px; }
  .stat-row { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .content-section, .page-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}
