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

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

:root {
  --amber: #ff8c00;
  --amber-light: #ffb347;
  --copper: #b87333;
  --bg-deep: #0d0a05;
  --bg-warm: #1a1208;
  --surface: #211a0e;
  --text-warm: #f5ead6;
  --text-faint: #a0906a;
  --glow: rgba(255, 140, 0, 0.1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Merriweather', serif;
  background: var(--bg-deep);
  color: var(--text-warm);
  line-height: 1.8;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; }
a { color: var(--amber); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* HEADER - centered with line separators */
.site-head {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(13, 10, 5, 0.94);
  backdrop-filter: blur(12px);
  height: 66px;
  display: flex; align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid var(--glow);
}
.head-wrap {
  width: 100%; max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.site-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--amber);
}
.nav-items { display: flex; gap: 1.8rem; list-style: none; }
.nav-items a { color: var(--text-faint); font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.9rem; }
.nav-items a:hover { color: var(--amber); }

.mob-menu { display: none; background: none; border: none; cursor: pointer; }
.mob-menu i { display: block; width: 26px; height: 3px; background: var(--amber); margin: 4px 0; border-radius: 2px; transition: 0.3s; }

/* HERO - gradient with warm tones */
.landing {
  min-height: 100vh;
  background: linear-gradient(170deg, var(--bg-deep) 0%, #1a0f00 50%, var(--bg-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 2rem 60px;
}
.landing-box { max-width: 720px; }
.landing-box h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.landing-box h1 .glow { color: var(--amber); }
.landing-box p { font-size: 1.05rem; color: var(--text-faint); margin-bottom: 2.5rem; }
.warm-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--amber), var(--copper));
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.3s;
}
.warm-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,140,0,0.25); color: #fff; }

/* NOTICE CARDS */
.notice-section {
  padding: 70px 2rem;
  background: var(--bg-warm);
}
.notice-section h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.notice-wrap {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto; justify-content: center;
}
.n-card {
  flex: 1; min-width: 280px; max-width: 360px;
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--glow);
  transition: 0.3s;
}
.n-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.n-card .sym { font-size: 2.5rem; margin-bottom: 1rem; }
.n-card h3 { color: var(--amber); margin-bottom: 0.5rem; font-size: 1.15rem; }
.n-card p { color: var(--text-faint); font-size: 0.92rem; }

/* GAME */
.game-area {
  padding: 80px 2rem;
  background: var(--bg-deep);
}
.game-area h2 { text-align: center; font-size: 2.1rem; margin-bottom: 0.5rem; }
.game-area .intro-text { text-align: center; color: var(--text-faint); max-width: 520px; margin: 0 auto 2.5rem; }
.game-holder {
  max-width: 940px; margin: 0 auto;
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(255,140,0,0.15);
  box-shadow: 0 0 50px rgba(255,140,0,0.06);
}
.game-holder iframe { width: 100%; height: 580px; border: none; background: #000; }

/* HIGHLIGHTS */
.highlights {
  padding: 80px 2rem;
  background: var(--bg-warm);
}
.highlights h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.hl-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
}
.hl-item {
  background: var(--surface);
  padding: 2rem; border-radius: 12px;
  border-left: 4px solid var(--copper);
}
.hl-item h3 { color: var(--amber-light); margin-bottom: 0.5rem; }
.hl-item p { color: var(--text-faint); font-size: 0.93rem; }

/* FOOTER */
.page-foot {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid var(--glow);
}
.rg-links a { color: var(--text-faint); margin: 0 1rem; font-size: 0.88rem; }
.rg-links a:hover { color: var(--amber); }
.tiny { color: var(--text-faint); font-size: 0.8rem; margin-top: 0.8rem; }

/* AGE */
.age-cover {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
}
.age-prompt {
  background: var(--surface);
  border: 2px solid var(--amber);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 430px; width: 90%;
}
.age-prompt h2 { color: var(--amber); margin-bottom: 0.7rem; }
.age-prompt p { color: var(--text-faint); margin-bottom: 2rem; font-size: 0.95rem; }
.age-opts { display: flex; gap: 1rem; justify-content: center; }
.age-opts button {
  padding: 12px 30px; border-radius: 50px; font-weight: 700;
  cursor: pointer; border: 2px solid var(--amber); font-size: 0.95rem; transition: 0.3s;
  font-family: 'Nunito', sans-serif;
}
.age-yes { background: var(--amber); color: var(--bg-deep); }
.age-yes:hover { background: #fff; border-color: #fff; }
.age-no { background: transparent; color: var(--amber); }
.age-no:hover { background: rgba(255,140,0,0.1); }
.removed { display: none !important; }

/* TEXT PAGES */
.text-area {
  max-width: 860px; margin: 0 auto; padding: 110px 2rem 80px;
}
.text-area h1 { font-size: 2.4rem; margin-bottom: 1.5rem; color: var(--amber); }
.text-area h2 { font-size: 1.35rem; margin: 2rem 0 0.8rem; color: var(--copper); font-family: 'Nunito', sans-serif; }
.text-area p { color: var(--text-faint); margin-bottom: 1rem; }
.text-area ul { color: var(--text-faint); margin: 1rem 0 1rem 1.5rem; }
.text-area li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .mob-menu { display: block; }
  .nav-items {
    position: fixed; top: 66px; left: 0; width: 100%;
    background: rgba(13,10,5,0.98);
    flex-direction: column; padding: 2rem; gap: 1.2rem;
    transform: translateY(-120%); transition: 0.3s;
  }
  .nav-items.on { transform: translateY(0); }
  .landing-box h1 { font-size: 2rem; }
  .hl-grid { grid-template-columns: 1fr; }
  .game-holder iframe { height: 380px; }
}
