@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --forest: #1a3a20;
  --forest-mid: #244a2c;
  --forest-light: #2e5a38;
  --gold: #c9a835;
  --gold-light: #e0c860;
  --gold-pale: #f5e8a0;
  --bg-deep: #0e2414;
  --text-cream: #f0ead8;
  --text-sage: #a8c0a0;
  --text-muted: #6a886a;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text-cream); background: var(--bg-deep); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Work Sans', sans-serif; font-weight: 700; }

/* TOP NAV - MINIMAL LINE */
.topnav { background: var(--forest); position: sticky; top: 0; z-index: 1000; }
.topnav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 62px; padding: 0 2rem; }
.brand-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.brand-diamond { width: 30px; height: 30px; background: var(--gold); transform: rotate(45deg); display: flex; align-items: center; justify-content: center; border-radius: 3px; }
.brand-diamond span { transform: rotate(-45deg); font-family: 'Work Sans', sans-serif; font-weight: 800; font-size: 0.85rem; color: var(--forest); }
.brand-text { font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 1.3rem; color: var(--text-cream); }
.links { display: flex; gap: 1.5rem; list-style: none; }
.links a { color: var(--text-sage); text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: color 0.3s; }
.links a:hover, .links a.here { color: var(--gold); }
.ham { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.ham span { width: 25px; height: 2.5px; background: var(--gold); border-radius: 2px; }

/* HERO - LAYERED GRADIENT */
.hero-layer { padding: 6rem 2rem 5rem; background: linear-gradient(170deg, var(--forest) 0%, var(--bg-deep) 40%, var(--forest-mid) 100%); text-align: center; position: relative; }
.hero-layer::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-layer h1 { font-size: 3.2rem; color: var(--gold-pale); margin-bottom: 1rem; }
.hero-layer p { font-size: 1.1rem; color: var(--text-sage); max-width: 680px; margin: 0 auto 2rem; }
.hero-tags { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.htag { background: rgba(201,168,53,0.12); border: 1px solid rgba(201,168,53,0.35); color: var(--gold-light); padding: 0.45rem 1.2rem; font-weight: 600; font-size: 0.82rem; border-radius: 4px; }

/* SECTION */
.sec { padding: 4.5rem 2rem; }
.sec-wrap { max-width: 1400px; margin: 0 auto; }
.sec h2 { font-size: 2rem; color: var(--gold-pale); margin-bottom: 0.5rem; }
.sec .lead { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 560px; }
.sec-alt { background: var(--forest); }

/* ICON TILES - 2x2 GRID */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tile { background: rgba(36,74,44,0.5); border-left: 4px solid var(--gold); padding: 2rem; border-radius: 0 8px 8px 0; }
.tile h3 { font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.tile p { color: var(--text-sage); font-size: 0.9rem; }

/* GAME */
.game-sec { padding: 4rem 2rem; background: var(--forest); text-align: center; }
.game-sec h2 { font-size: 2rem; color: var(--gold-pale); margin-bottom: 0.5rem; }
.game-sec .gn { color: var(--text-muted); margin-bottom: 2rem; }
.game-wrap { max-width: 800px; margin: 0 auto; border: 2px solid var(--gold); border-radius: 8px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.game-wrap iframe { width: 100%; height: 620px; border: none; display: block; }

/* GOLD DIVIDER */
.gold-div { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 0; }

/* WIDE TEXT */
.wide-blurb { max-width: 850px; margin: 0 auto; text-align: center; color: var(--text-sage); font-size: 1.02rem; }

/* INLINE STATS */
.inline-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.istat { text-align: center; }
.istat strong { font-family: 'Work Sans', sans-serif; font-size: 2rem; color: var(--gold); display: block; }
.istat span { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

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

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

/* FOOTER */
.btm { background: var(--forest); padding: 2rem; border-top: 2px solid rgba(201,168,53,0.3); }
.btm-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.btm-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.btm-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.btm-links a:hover { color: var(--gold-light); }
.btm-note { color: var(--text-muted); font-size: 0.8rem; }

/* AGE */
.age-cover { position: fixed; inset: 0; background: rgba(14,36,20,0.97); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-cover.hidden { display: none; }
.age-prompt { background: var(--forest); border: 2px solid var(--gold); border-radius: 12px; padding: 2.5rem; text-align: center; max-width: 420px; width: 90%; }
.age-prompt h2 { color: var(--gold-pale); margin-bottom: 0.8rem; font-size: 1.7rem; }
.age-prompt p { color: var(--text-sage); margin-bottom: 1.8rem; font-size: 0.92rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.abtn { padding: 0.7rem 2rem; border-radius: 6px; font-family: 'Work Sans', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: 0.3s; }
.abtn.y { background: var(--gold); color: var(--forest); }
.abtn.y:hover { background: var(--gold-light); }
.abtn.n { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.abtn.n:hover { background: rgba(201,168,53,0.1); }

@media (max-width: 768px) {
  .ham { display: flex; }
  .links { display: none; position: absolute; top: 62px; left: 0; right: 0; background: var(--forest); flex-direction: column; padding: 1.5rem 2rem; gap: 0.8rem; }
  .links.open { display: flex; }
  .hero-layer h1 { font-size: 2.2rem; }
  .tiles { grid-template-columns: 1fr; }
  .game-wrap iframe { height: 450px; }
  .btm-inner { flex-direction: column; text-align: center; }
}
