@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

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

:root {
  --terra: #c2703e;
  --terra-dark: #8b4a26;
  --sand: #f5ede3;
  --cream: #fdfaf5;
  --olive: #5a6340;
  --charcoal: #2c2418;
  --text: #4a3d2e;
  --text-light: #8c7c6a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--cream); color: var(--text); line-height: 1.8; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 700; }
a { color: var(--terra); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--terra-dark); }

/* NAV */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000; height: 70px;
  background: var(--cream); border-bottom: 3px solid var(--terra);
  display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem;
}
.nb-brand { display: flex; align-items: center; gap: 10px; }
.nb-brand svg { width: 34px; height: 34px; }
.nb-brand span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); }
.nb-menu { display: flex; gap: 2rem; list-style: none; }
.nb-menu a { font-size: 0.88rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.nb-menu a:hover, .nb-menu a.cur { color: var(--terra); }
.nb-toggle { display: none; background: none; border: none; cursor: pointer; }
.nb-toggle svg { width: 28px; height: 28px; stroke: var(--charcoal); }

/* HERO FULL WIDTH */
.hero-fw {
  width: 100%; padding: 130px 2.5rem 5rem;
  background: linear-gradient(170deg, var(--sand) 0%, var(--cream) 50%, rgba(194,112,62,0.08) 100%);
  text-align: center;
}
.hero-fw h1 { font-size: 3.4rem; color: var(--charcoal); margin-bottom: 1rem; }
.hero-fw h1 span { color: var(--terra); }
.hero-fw > p { max-width: 750px; margin: 0 auto 2.5rem; font-size: 1.1rem; color: var(--text-light); }
.pill-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.pill { background: var(--terra); color: #fff; padding: 0.55rem 1.6rem; border-radius: 6px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; }

/* GAME */
.game-sec { width: 100%; max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; }
.game-sec h2 { text-align: center; font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--charcoal); }
.game-box {
  width: 100%; padding-top: 62%; position: relative; border-radius: 10px; overflow: hidden;
  border: 3px solid var(--terra); box-shadow: 0 6px 24px rgba(194,112,62,0.15);
}
.game-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ALTERNATING SECTIONS */
.alt-section {
  width: 100%; padding: 4rem 2.5rem;
}
.alt-section:nth-child(even) { background: var(--sand); }
.alt-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.alt-inner.reverse { direction: rtl; }
.alt-inner.reverse > * { direction: ltr; }
.alt-text h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--charcoal); }
.alt-text p { color: var(--text-light); margin-bottom: 0.8rem; }
.icon-stack { display: flex; flex-direction: column; gap: 1.2rem; }
.is-item {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem;
  background: var(--cream); border-radius: 10px; border: 1px solid rgba(194,112,62,0.15);
}
.is-item .emoji { font-size: 1.8rem; }
.is-item h4 { color: var(--terra); font-size: 0.95rem; margin-bottom: 0.2rem; font-family: 'Nunito', sans-serif; font-weight: 700; }
.is-item p { color: var(--text-light); font-size: 0.85rem; }

/* PAGE CONTENT */
.page-sec { max-width: 880px; margin: 0 auto; padding: 110px 2rem 4rem; }
.page-sec h1 { font-size: 2.5rem; color: var(--charcoal); margin-bottom: 1rem; }
.page-sec h3 { font-size: 1.25rem; color: var(--terra); margin: 2rem 0 0.7rem; }
.page-sec p { color: var(--text-light); margin-bottom: 1rem; }
.page-sec ul { margin: 0.8rem 0 1.2rem 1.5rem; }
.page-sec li { color: var(--text-light); margin-bottom: 0.4rem; }

/* PLAY */
.play-head { padding: 110px 2rem 2rem; text-align: center; }
.play-head h1 { font-size: 2.4rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.play-head p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
.play-tips {
  max-width: 700px; margin: 2rem auto; background: var(--sand); border-left: 5px solid var(--terra);
  border-radius: 8px; padding: 1.5rem 2rem;
}
.play-tips h3 { color: var(--charcoal); margin-bottom: 0.5rem; }
.play-tips li { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.3rem; }

/* FOOTER */
.bottom-bar {
  background: var(--charcoal); color: var(--sand); padding: 3rem 2rem; text-align: center; margin-top: 4rem;
}
.bb-nav { display: flex; justify-content: center; gap: 1.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.bb-nav a { color: var(--sand); font-size: 0.88rem; }
.bb-nav a:hover { color: var(--terra); }
.bb-resp { margin-bottom: 1.2rem; }
.bb-resp p { font-size: 0.82rem; margin-bottom: 0.4rem; }
.bb-resp a { color: var(--terra); font-size: 0.82rem; margin: 0 0.5rem; }
.bb-copy { font-size: 0.75rem; opacity: 0.5; }

/* AGE */
.age-wall {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(44,36,24,0.94); display: flex; align-items: center; justify-content: center;
}
.age-wall.off { display: none; }
.age-dialog {
  background: var(--cream); border-radius: 14px; padding: 2.5rem; text-align: center;
  max-width: 430px; width: 90%; box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 3px solid var(--terra);
}
.age-dialog h2 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.8rem; }
.age-dialog p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.age-bts { display: flex; gap: 1rem; justify-content: center; }
.age-bts button {
  padding: 0.7rem 2rem; border-radius: 6px; font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 700; cursor: pointer; border: 2px solid var(--terra); transition: 0.3s;
}
.ab-y { background: var(--terra); color: #fff; }
.ab-y:hover { background: var(--terra-dark); border-color: var(--terra-dark); }
.ab-n { background: transparent; color: var(--text-light); }
.ab-n:hover { background: #fee2e2; color: #b91c1c; border-color: #b91c1c; }

@media (max-width: 768px) {
  .nb-toggle { display: block; }
  .nb-menu {
    position: fixed; top: 70px; left: 0; width: 100%;
    background: var(--cream); border-bottom: 3px solid var(--terra);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    transform: translateY(-120%); transition: 0.3s; z-index: 999;
  }
  .nb-menu.vis { transform: translateY(0); }
  .hero-fw h1 { font-size: 2.2rem; }
  .alt-inner, .alt-inner.reverse { grid-template-columns: 1fr; direction: ltr; }
  .game-box { padding-top: 75%; }
}
