@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;500;600;700&family=Karla:wght@300;400;500;600;700&display=swap');

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

:root {
  --burgundy: #5a1a2a;
  --burgundy-light: #7a2a3e;
  --burgundy-dark: #3a0e1a;
  --cream: #f5e6d0;
  --cream-light: #faf4ea;
  --cream-dark: #d8c8a8;
  --text-dark: #2a1018;
  --text-mid: #6a4a52;
  --text-muted: #9a7a82;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Karla', sans-serif; color: var(--text-dark); background: var(--cream-light); line-height: 1.8; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Bitter', serif; font-weight: 700; }

/* HEADER */
.nav-header { background: var(--burgundy); position: sticky; top: 0; z-index: 1000; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 66px; padding: 0 2rem; }
.v-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.v-mark { font-family: 'Bitter', serif; font-weight: 700; font-size: 1.8rem; color: var(--cream); line-height: 1; }
.v-name { font-family: 'Bitter', serif; font-weight: 500; font-size: 1.2rem; color: var(--cream-dark); }
.nav-menu { display: flex; gap: 1.5rem; list-style: none; }
.nav-menu a { color: var(--cream-dark); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.now { color: var(--cream); }
.toggle-nav { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.toggle-nav span { width: 26px; height: 2.5px; background: var(--cream); border-radius: 2px; }

/* HERO - SPLIT BURGUNDY/CREAM */
.hero-split { display: flex; min-height: 70vh; }
.hero-left { flex: 1; background: var(--burgundy-dark); display: flex; align-items: center; justify-content: center; padding: 4rem 3rem; }
.hero-left-content { max-width: 550px; }
.hero-left h1 { font-size: 2.8rem; color: var(--cream); line-height: 1.15; margin-bottom: 1.2rem; }
.hero-left p { color: var(--cream-dark); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-tags { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.htag { background: rgba(245,230,208,0.1); border: 1px solid rgba(245,230,208,0.25); color: var(--cream); padding: 0.4rem 1rem; font-weight: 600; font-size: 0.8rem; border-radius: 4px; }
.hero-right { flex: 1; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 8rem; color: var(--burgundy); opacity: 0.2; }

/* SECTIONS */
.segment { padding: 4.5rem 2rem; }
.segment-inner { max-width: 1400px; margin: 0 auto; }
.segment h2 { font-size: 1.9rem; color: var(--burgundy); margin-bottom: 0.5rem; }
.segment .blurb { color: var(--text-muted); margin-bottom: 2.5rem; }
.segment-burg { background: var(--burgundy); color: var(--cream); }
.segment-burg h2 { color: var(--cream); }
.segment-burg .blurb { color: var(--cream-dark); }

/* THREE COLUMN CARDS */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.vcard { background: var(--cream-light); border: 1px solid var(--cream-dark); border-radius: 10px; padding: 2rem; border-top: 4px solid var(--burgundy); }
.vcard h3 { font-size: 1.1rem; color: var(--burgundy); margin-bottom: 0.5rem; }
.vcard p { color: var(--text-mid); font-size: 0.9rem; }

/* GAME */
.game-zone { padding: 4rem 2rem; background: var(--burgundy-dark); text-align: center; }
.game-zone h2 { color: var(--cream); font-size: 2rem; margin-bottom: 0.5rem; }
.game-zone .gz-sub { color: var(--cream-dark); margin-bottom: 2rem; }
.game-box { max-width: 920px; margin: 0 auto; border-radius: 10px; overflow: hidden; border: 3px solid var(--burgundy-light); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.game-box iframe { width: 100%; height: 600px; border: none; display: block; }

/* WIDE TEXT */
.centered-text { max-width: 800px; margin: 0 auto; text-align: center; font-size: 1.02rem; }

/* CONTENT */
.cp { padding: 3rem 2rem; min-height: 60vh; }
.cp-inner { max-width: 860px; margin: 0 auto; }
.cp h1 { font-size: 2.5rem; color: var(--burgundy); margin-bottom: 1.5rem; padding-top: 1rem; }
.cp h2 { font-size: 1.3rem; color: var(--burgundy-light); margin: 2rem 0 0.8rem; }
.cp p, .cp li { color: var(--text-mid); margin-bottom: 1rem; }
.cp ul { padding-left: 1.5rem; }

/* PLAY */
.play-h { text-align: center; padding: 3rem 2rem 1rem; }
.play-h h1 { font-size: 2.5rem; color: var(--burgundy); }
.play-h p { color: var(--text-muted); max-width: 620px; margin: 1rem auto 0; }

/* FOOTER */
.foot { background: var(--burgundy-dark); padding: 2rem; }
.foot-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.foot-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.foot-links a { color: var(--cream-dark); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.foot-links a:hover { color: var(--cream); }
.foot-copy { color: rgba(245,230,208,0.5); font-size: 0.8rem; }

/* AGE */
.age-dim { position: fixed; inset: 0; background: rgba(58,14,26,0.97); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-dim.hidden { display: none; }
.age-pane { background: var(--cream-light); border-radius: 14px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.age-pane h2 { color: var(--burgundy); margin-bottom: 0.8rem; font-size: 1.6rem; }
.age-pane p { color: var(--text-mid); margin-bottom: 1.8rem; }
.age-acts { display: flex; gap: 0.8rem; justify-content: center; }
.ab { padding: 0.7rem 2rem; border-radius: 8px; font-family: 'Bitter', serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: 0.3s; }
.ab.ok { background: var(--burgundy); color: var(--cream); }
.ab.ok:hover { background: var(--burgundy-light); }
.ab.no { background: transparent; border: 2px solid var(--burgundy); color: var(--burgundy); }
.ab.no:hover { background: rgba(90,26,42,0.1); }

@media (max-width: 768px) {
  .toggle-nav { display: flex; }
  .nav-menu { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--burgundy); flex-direction: column; padding: 1.5rem 2rem; gap: 0.8rem; }
  .nav-menu.open { display: flex; }
  .hero-split { flex-direction: column; }
  .hero-right { display: none; }
  .hero-left h1 { font-size: 2.2rem; }
  .card-row { grid-template-columns: 1fr; }
  .game-box iframe { height: 400px; }
}
