@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --crimson: #dc143c;
  --crimson-dark: #a0102d;
  --cream: #faf5ef;
  --charcoal: #1a1115;
  --surface: #231a1f;
  --surface-alt: #1e1318;
  --text-light: #f0e8e0;
  --text-faded: #9a8a8f;
  --border-subtle: rgba(220, 20, 60, 0.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--charcoal);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: var(--crimson); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--cream); }

/* NAVIGATION - full width bar */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(26, 17, 21, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.7rem;
  color: var(--crimson);
  font-style: italic;
}
.nav-menu { display: flex; gap: 2rem; list-style: none; }
.nav-menu a {
  color: var(--text-faded); font-size: 0.9rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.nav-menu a:hover { color: var(--crimson); }

.ham-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.ham-btn span {
  width: 25px; height: 2px; background: var(--crimson); border-radius: 2px; transition: 0.3s;
}

/* HERO - full screen with centered elegant text */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #2a0a15 0%, var(--charcoal) 70%);
  padding: 100px 2rem 60px;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(220,20,60,0.02) 40px, rgba(220,20,60,0.02) 41px);
}
.hero-inner { position: relative; z-index: 2; max-width: 750px; }
.hero-inner h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900; font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-inner h1 .accent { color: var(--crimson); }
.hero-inner p { font-size: 1.15rem; color: var(--text-faded); margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btn {
  display: inline-block;
  padding: 16px 44px;
  background: var(--crimson);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}
.hero-btn:hover { background: var(--cream); color: var(--charcoal); }

/* IMPORTANT NOTES */
.notes-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--surface-alt);
  border-top: 2px solid var(--crimson);
}
.note-cell {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.note-cell:last-child { border-right: none; }
.note-cell .emoji { font-size: 2.2rem; margin-bottom: 0.8rem; }
.note-cell h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--crimson); }
.note-cell p { color: var(--text-faded); font-size: 0.92rem; }

/* GAME */
.game-showcase {
  padding: 80px 2rem;
  background: var(--charcoal);
}
.game-showcase h2 { text-align: center; font-size: 2.2rem; font-style: italic; margin-bottom: 0.6rem; }
.game-showcase .tagline { text-align: center; color: var(--text-faded); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.game-box {
  max-width: 920px; margin: 0 auto;
  border: 2px solid rgba(220,20,60,0.2);
  border-radius: 8px; overflow: hidden;
}
.game-box iframe { width: 100%; height: 580px; border: none; background: #000; }

/* TWO COLUMN INFO */
.info-two {
  padding: 80px 2rem;
  background: var(--surface);
}
.info-two h2 { text-align: center; font-size: 2rem; font-style: italic; margin-bottom: 2.5rem; }
.two-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
.col-card {
  background: var(--charcoal);
  padding: 2rem;
  border-radius: 8px;
  border-bottom: 3px solid var(--crimson);
}
.col-card h3 { color: var(--crimson); margin-bottom: 0.6rem; font-style: italic; }
.col-card p { color: var(--text-faded); font-size: 0.95rem; }

/* FOOTER */
.foot {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--surface-alt);
  border-top: 1px solid var(--border-subtle);
}
.foot-links { margin-bottom: 1rem; }
.foot-links a { color: var(--text-faded); margin: 0 1rem; font-size: 0.88rem; }
.foot-links a:hover { color: var(--crimson); }
.foot-note { color: var(--text-faded); font-size: 0.82rem; }

/* AGE POPUP */
.age-wall {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
}
.age-panel {
  background: var(--surface);
  border: 2px solid var(--crimson);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  max-width: 420px; width: 90%;
}
.age-panel h2 { color: var(--crimson); margin-bottom: 0.7rem; font-style: italic; }
.age-panel p { color: var(--text-faded); margin-bottom: 2rem; }
.age-choices { display: flex; gap: 1rem; justify-content: center; }
.age-choices button {
  padding: 12px 32px; border-radius: 4px; font-weight: 700;
  cursor: pointer; border: 2px solid var(--crimson); font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.yes-btn { background: var(--crimson); color: #fff; }
.yes-btn:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }
.no-btn { background: transparent; color: var(--crimson); }
.no-btn:hover { background: rgba(220,20,60,0.1); }

.dismissed { display: none !important; }

/* TEXT PAGES */
.article {
  max-width: 860px; margin: 0 auto; padding: 115px 2rem 80px;
}
.article h1 { font-size: 2.5rem; font-style: italic; margin-bottom: 1.5rem; color: var(--crimson); }
.article h2 { font-size: 1.35rem; margin: 2rem 0 0.8rem; color: var(--cream); font-style: italic; }
.article p { color: var(--text-faded); margin-bottom: 1rem; }
.article ul { color: var(--text-faded); margin: 1rem 0 1rem 1.5rem; }
.article li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .ham-btn { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; width: 100%;
    background: rgba(26,17,21,0.98);
    flex-direction: column; padding: 2rem; gap: 1.2rem;
    transform: translateX(-100%); transition: 0.3s;
  }
  .nav-menu.visible { transform: translateX(0); }
  .hero-inner h1 { font-size: 2.2rem; }
  .notes-row { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .game-box iframe { height: 380px; }
}
