@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --forest: #2d5a3d;
  --forest-deep: #1a3a28;
  --sage: #7da68a;
  --terracotta: #c8734d;
  --sand: #f4ead5;
  --cream: #faf8f2;
  --text: #2c2c2c;
  --text-light: #666;
  --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', 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(--terracotta); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--forest); }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: var(--white);
  border-bottom: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-leaf {
  width: 28px; height: 28px;
  background: var(--forest);
  border-radius: 50% 0 50% 0;
  display: inline-block;
}

.top-nav { display: flex; gap: 1.8rem; list-style: none; }
.top-nav a {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.3s;
}
.top-nav a:hover { color: var(--terracotta); }

.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.ham-btn span {
  width: 24px; height: 2.5px;
  background: var(--forest);
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

.slide-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--sand);
  z-index: 999;
  flex-direction: column;
  padding: 0.5rem 2rem 1.5rem;
}
.slide-menu.active { display: flex; }
.slide-menu a {
  color: var(--text);
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--sand);
}
.slide-menu a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .top-nav { display: none; }
  .ham-btn { display: flex; }
}

/* HERO - full-width image-style */
.banner {
  margin-top: 68px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest), var(--sage));
  padding: 6rem 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

.banner h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.banner p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.btn-warm {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-warm:hover { background: #b5623e; transform: translateY(-2px); color: var(--white); }

/* NOTICES */
.notices-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--sand);
  flex-wrap: wrap;
}

.notice-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.notice-pill .pill-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pill-dot.red { background: #e74c3c; }
.pill-dot.green { background: #27ae60; }
.pill-dot.orange { background: #f39c12; }

/* GAME */
.game-section {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.game-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: var(--forest);
}

.game-section .sub {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.game-box {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--sand);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.game-box iframe {
  width: 100%; height: 580px; border: none; display: block;
}

@media (max-width: 768px) {
  .game-box iframe { height: 370px; }
}

/* FEATURES - horizontal cards */
.features-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--forest);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 1.8rem;
  text-align: center;
  transition: box-shadow 0.3s;
}
.feat-card:hover { box-shadow: 0 6px 25px rgba(0,0,0,0.08); }

.feat-card .f-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.feat-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--forest); }
.feat-card p { color: var(--text-light); font-size: 0.92rem; }

/* ABOUT */
.about-area {
  padding: 4rem 2rem;
  background: var(--forest-deep);
  color: var(--white);
}

.about-area .inner { max-width: 800px; margin: 0 auto; text-align: center; }

.about-area h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.about-area p { opacity: 0.85; margin-bottom: 1.2rem; font-size: 1.02rem; }

/* CONTENT PAGES */
.page-wrap {
  margin-top: 68px;
  padding: 3rem 2rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
  min-height: calc(100vh - 68px - 160px);
}

.page-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--forest);
}

.page-wrap h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.7rem;
  color: var(--terracotta);
}

.page-wrap p { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; }

.page-wrap ul, .page-wrap ol {
  margin: 0.5rem 0 1.2rem 1.5rem;
  color: var(--text-light);
}
.page-wrap li { margin-bottom: 0.4rem; }

/* PLAY NOTE */
.tip-card {
  background: var(--sand);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 960px;
}
.tip-card h3 { color: var(--forest); margin-bottom: 0.4rem; font-size: 1.05rem; }
.tip-card p { color: var(--text-light); font-size: 0.92rem; }

/* FOOTER */
.footer {
  background: var(--forest-deep);
  color: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer-links a:hover { color: var(--terracotta); }

.footer-help {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}
.footer-help p { font-size: 0.78rem; opacity: 0.5; margin-bottom: 0.5rem; }
.footer-help a { color: var(--terracotta); margin: 0 0.4rem; font-size: 0.82rem; }

/* AGE POPUP */
.age-overlay {
  position: fixed; inset: 0;
  background: rgba(26,58,40,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-modal {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  color: var(--text);
}

.age-modal h2 { color: var(--forest); font-size: 1.4rem; margin-bottom: 0.8rem; }
.age-modal p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }

.age-choices { display: flex; gap: 0.8rem; justify-content: center; }

.age-choices button {
  padding: 0.7rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid var(--forest);
}

.age-y { background: var(--forest); color: var(--white); }
.age-y:hover { background: var(--forest-deep); }
.age-n { background: transparent; color: var(--forest); }
.age-n:hover { background: rgba(45,90,61,0.1); }

.age-blocked {
  position: fixed; inset: 0;
  background: var(--forest-deep);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.age-blocked h2 { color: var(--terracotta); font-size: 1.8rem; margin-bottom: 1rem; }
