@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --midnight: #0f1b2d;
  --navy: #1a2744;
  --silver: #c0c8d4;
  --moonlight: #e8edf5;
  --pale-gold: #d4b896;
  --text-light: #b8c4d8;
  --text-dim: #7a8a9e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--midnight);
  color: var(--text-light);
  line-height: 1.8;
}

.site-header {
  background: rgba(15,27,45,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,200,212,0.15);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 66px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--moonlight);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}

.logo svg { width: 30px; height: 30px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--pale-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.hamburger span { width: 26px; height: 2px; background: var(--silver); border-radius: 1px; }

main { margin-top: 66px; }

.hero {
  padding: 7rem 2rem 5rem;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--navy) 0%, var(--midnight) 70%);
  position: relative;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--moonlight);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-block;
  border: 1px solid var(--pale-gold);
  color: var(--pale-gold);
  padding: 13px 38px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.3s;
}

.hero-cta:hover {
  background: var(--pale-gold);
  color: var(--midnight);
}

.pillars {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.pillar {
  text-align: center;
  max-width: 300px;
}

.pillar .p-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.pillar p { color: var(--text-dim); font-size: 0.88rem; }

.game-showcase {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.game-showcase h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.game-display {
  border: 1px solid rgba(192,200,212,0.2);
  border-radius: 8px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  background: #000;
}

.game-display iframe { width: 100%; height: 600px; border: none; display: block; }

.elegance-section {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.elegance-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--pale-gold);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.elegance-section p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.moon-features {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.moon-features h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
}

.mf-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.mf-item {
  border-left: 2px solid var(--pale-gold);
  padding-left: 1.5rem;
}

.mf-item h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.mf-item p { color: var(--text-dim); font-size: 0.85rem; }

.content-page {
  padding: 4rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.content-page h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 2.4rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,184,150,0.3);
  letter-spacing: 1px;
}

.content-page h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--pale-gold);
  font-size: 1.3rem;
  margin: 2.5rem 0 0.8rem;
}

.content-page p, .content-page li { color: var(--text-dim); margin-bottom: 0.8rem; font-size: 0.92rem; }
.content-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

.play-intro {
  padding: 5rem 2rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--navy), var(--midnight));
}

.play-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.play-intro p { color: var(--text-dim); max-width: 550px; margin: 0 auto; }

.play-content { padding: 2rem; max-width: 1000px; margin: 0 auto; }

.play-tip {
  border: 1px solid rgba(192,200,212,0.15);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid rgba(192,200,212,0.1);
  background: rgba(15,27,45,0.8);
  padding: 2.5rem 2rem;
  text-align: center;
}

.ft-resp { margin-bottom: 1rem; }

.ft-resp h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ft-resp a {
  color: var(--text-dim);
  text-decoration: none;
  margin: 0 0.7rem;
  font-size: 0.82rem;
}

.ft-resp a:hover { color: var(--pale-gold); }
.ft-small { font-size: 0.72rem; color: rgba(192,200,212,0.4); }

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,18,30,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-panel {
  border: 1px solid rgba(192,200,212,0.2);
  background: var(--navy);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.age-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--moonlight);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.age-panel p { color: var(--text-dim); margin-bottom: 1.5rem; font-size: 0.9rem; }

.age-actions { display: flex; gap: 1rem; justify-content: center; }

.age-actions button {
  padding: 10px 30px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid var(--pale-gold);
  transition: 0.3s;
  letter-spacing: 1px;
}

.age-accept { background: var(--pale-gold); color: var(--midnight); }
.age-accept:hover { opacity: 0.85; }
.age-reject { background: transparent; color: var(--pale-gold); }
.age-reject:hover { background: rgba(212,184,150,0.1); }

.age-denied-msg { color: #e07070; margin-top: 1rem; display: none; font-size: 0.88rem; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 66px;
    right: 0;
    width: 240px;
    background: var(--midnight);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    border-left: 1px solid rgba(192,200,212,0.1);
    transform: translateX(100%);
    transition: transform 0.3s;
    height: calc(100vh - 66px);
  }
  .nav-links.open { transform: translateX(0); }
  .hero h1 { font-size: 2rem; }
  .pillars { flex-direction: column; align-items: center; }
  .mf-list { grid-template-columns: 1fr; }
  .game-display iframe { height: 360px; }
}
