/* lunavoryxen.xyz - Moonlit Silver & Navy Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Raleway:wght@300;400;600;700&display=swap');

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

:root {
  --midnight: #0f1729;
  --navy: #1b2a4a;
  --silver: #c5cfe0;
  --moon-glow: #e8edf5;
  --blue-accent: #6889c4;
  --pale-gold: #d4b978;
  --card-surface: rgba(27, 42, 74, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--midnight);
  color: var(--moon-glow);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

a { color: var(--pale-gold); text-decoration: none; transition: 0.3s; }
a:hover { color: #e8d49e; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(15, 23, 41, 0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 207, 224, 0.08);
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 3rem;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--pale-gold);
  display: flex; align-items: center; gap: 0.6rem;
}
.brand svg { width: 30px; height: 30px; }
.nav-list { display: flex; gap: 2rem; list-style: none; }
.nav-list a {
  font-family: 'Raleway', sans-serif;
  color: var(--silver); font-weight: 400; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-list a:hover, .nav-list a.current { color: var(--pale-gold); }
.menu-btn {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
}
.menu-btn div { width: 24px; height: 2px; background: var(--silver); margin: 5px 0; transition: 0.3s; }

/* HERO SPLIT */
.hero-split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  min-height: 100vh; align-items: center;
  padding: 5rem 3rem;
  background: linear-gradient(160deg, var(--midnight), #162040 50%, var(--midnight));
}
.hero-left h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--pale-gold); line-height: 1.15; margin-bottom: 1.2rem;
}
.hero-left p { color: var(--silver); font-size: 1.05rem; margin-bottom: 1rem; max-width: 560px; }
.hero-right {
  display: flex; flex-direction: column; gap: 1.2rem;
  padding-left: 2rem;
}
.highlight-box {
  background: var(--card-surface);
  border-left: 3px solid var(--pale-gold);
  border-radius: 0 10px 10px 0;
  padding: 1.4rem 1.8rem;
}
.highlight-box h3 { font-size: 1.1rem; color: var(--pale-gold); margin-bottom: 0.4rem; }
.highlight-box p { font-size: 0.9rem; color: var(--silver); }

/* CONTENT BLOCK */
.content-block {
  max-width: 1200px; margin: 0 auto; padding: 4rem 3rem;
}
.content-block h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--pale-gold); margin-bottom: 1.2rem;
}
.content-block p {
  color: var(--silver); font-size: 1rem; margin-bottom: 1rem; max-width: 900px;
}

/* GAME FRAME */
.game-frame {
  max-width: 980px; margin: 2rem auto;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(212, 185, 120, 0.2);
  background: #080e1c;
  box-shadow: 0 12px 50px rgba(15, 23, 41, 0.7);
}
.game-frame iframe { width: 100%; height: 610px; border: none; display: block; }

/* TWO-COL INFO */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1200px; margin: 3rem auto; padding: 0 3rem;
}
.col-card {
  background: var(--card-surface); border-radius: 12px;
  padding: 2rem; border: 1px solid rgba(197, 207, 224, 0.06);
}
.col-card h3 { color: var(--pale-gold); font-size: 1.2rem; margin-bottom: 0.8rem; }
.col-card p { color: var(--silver); font-size: 0.93rem; }

/* BOTTOM */
.bottom-footer {
  border-top: 1px solid rgba(197, 207, 224, 0.06);
  text-align: center; padding: 2.5rem 2rem;
  background: rgba(15, 23, 41, 0.8);
}
.responsible-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.responsible-links a { color: var(--silver); font-size: 0.85rem; }
.responsible-links a:hover { color: var(--pale-gold); }
.bottom-footer p { color: #5e6e88; font-size: 0.8rem; }

/* AGE VERIFICATION */
.age-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 15, 30, 0.96);
  display: flex; align-items: center; justify-content: center;
}
.age-screen.hidden { display: none; }
.age-dialog {
  background: var(--navy); border: 1px solid var(--pale-gold);
  border-radius: 14px; padding: 2.5rem; max-width: 420px; text-align: center;
}
.age-dialog h2 { color: var(--pale-gold); margin-bottom: 1rem; font-size: 1.5rem; }
.age-dialog p { color: var(--silver); margin-bottom: 1.5rem; }
.age-choices { display: flex; gap: 1rem; justify-content: center; }
.age-choices button {
  padding: 0.7rem 2rem; border: none; border-radius: 8px;
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: 0.2s;
}
.age-choices button:hover { transform: scale(1.04); }
.age-yes { background: var(--pale-gold); color: var(--midnight); }
.age-no { background: transparent; border: 1px solid var(--pale-gold) !important; color: var(--pale-gold); }

/* INNER PAGES */
.page-inner {
  max-width: 1200px; margin: 0 auto; padding: 6.5rem 3rem 4rem;
}
.page-inner h1 { font-size: clamp(2rem, 3.5vw, 3rem); color: var(--pale-gold); margin-bottom: 1.5rem; }
.page-inner h2 { font-size: 1.4rem; color: var(--blue-accent); margin: 2rem 0 0.7rem; }
.page-inner p, .page-inner li { color: var(--silver); font-size: 0.98rem; margin-bottom: 0.7rem; }
.page-inner ul { padding-left: 1.4rem; }

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; padding: 5rem 1.5rem 3rem; }
  .hero-right { padding-left: 0; margin-top: 2rem; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-btn { display: block; }
  .nav-list {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(15, 23, 41, 0.97);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    transform: translateY(-120%); transition: 0.35s;
  }
  .nav-list.show { transform: translateY(0); }
  .game-frame iframe { height: 400px; }
  .content-block, .page-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .two-col { padding: 0 1.5rem; }
}
