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

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

:root {
  --warm-bg: #faf6ef;
  --warm-cream: #f5eedf;
  --warm-gold: #b8860b;
  --warm-brown: #5c3d2e;
  --warm-dark: #2c1a0e;
  --warm-text: #3d2b1f;
  --warm-muted: #8a7665;
  --warm-accent: #d4a017;
  --warm-red: #c0392b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Merriweather', serif;
  background: var(--warm-bg);
  color: var(--warm-text);
  line-height: 1.8;
}

/* HEADER */
.top-bar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: var(--warm-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
}

.brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--warm-gold);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav { display: flex; list-style: none; gap: 1.5rem; }

.main-nav a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #cbb99a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.current { color: var(--warm-gold); }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-gold);
  margin: 5px 0;
  transition: 0.3s;
}

.burger-btn.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

/* BANNER */
.welcome-banner {
  margin-top: 64px;
  padding: 6rem 4rem 5rem;
  background: linear-gradient(160deg, var(--warm-dark) 0%, var(--warm-brown) 100%);
  text-align: center;
}

.welcome-banner h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--warm-gold);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.welcome-banner p {
  color: #cbb99a;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.cta-link {
  display: inline-block;
  padding: 14px 42px;
  background: var(--warm-gold);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}

.cta-link:hover { background: var(--warm-accent); transform: translateY(-2px); }

/* ALERTS ROW */
.alerts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--warm-cream);
  border-bottom: 2px solid rgba(184,134,11,0.15);
}

.alert-cell {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(184,134,11,0.1);
}

.alert-cell:last-child { border-right: none; }

.alert-cell .emoji { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }

.alert-cell h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--warm-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GAME AREA */
.featured-game {
  padding: 4rem;
  text-align: center;
  background: #fff;
}

.featured-game h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--warm-brown);
  margin-bottom: 0.8rem;
}

.featured-game .sub { color: var(--warm-muted); margin-bottom: 2rem; }

.game-frame {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 3px solid var(--warm-gold);
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm-dark);
}

.game-frame iframe { width: 100%; height: 100%; border: none; }

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.col-left {
  padding: 4rem 3rem;
  background: var(--warm-cream);
}

.col-right {
  padding: 4rem 3rem;
  background: #fff;
}

.col-left h2, .col-right h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}

/* FEATURES */
.features-strip {
  padding: 4rem;
  background: var(--warm-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feat-box {
  text-align: center;
  padding: 2rem 1rem;
}

.feat-box .feat-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }

.feat-box h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--warm-gold);
  margin-bottom: 0.5rem;
}

.feat-box p { color: #b8a88a; font-size: 0.9rem; }

/* PAGE INNER */
.inner-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 2rem 60px;
}

.inner-page h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--warm-brown);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--warm-gold);
  padding-bottom: 0.5rem;
}

.inner-page h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--warm-brown);
  margin: 2rem 0 0.8rem;
}

.inner-page p { margin-bottom: 1rem; }
.inner-page ul, .inner-page ol { margin: 1rem 0 1rem 1.5rem; }
.inner-page li { margin-bottom: 0.5rem; }

/* PLAY PAGE */
.play-hero {
  padding: 100px 4rem 60px;
  text-align: center;
  background: #fff;
}

.play-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}

.play-hero .note { color: var(--warm-muted); max-width: 600px; margin: 0 auto 2rem; }

.play-wrapper {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 3px solid var(--warm-gold);
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm-dark);
}

.play-wrapper iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
.bottom-footer {
  background: var(--warm-dark);
  padding: 3rem;
  text-align: center;
}

.foot-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.foot-nav a { color: #b8a88a; text-decoration: none; font-family: 'Raleway', sans-serif; font-size: 0.85rem; transition: color 0.3s; }
.foot-nav a:hover { color: var(--warm-gold); }

.responsible-section { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(184,134,11,0.15); }
.responsible-section p { color: #8a7665; font-size: 0.85rem; margin-bottom: 0.6rem; }
.resp-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.resp-links a { color: var(--warm-gold); text-decoration: none; font-size: 0.85rem; font-family: 'Raleway', sans-serif; }
.resp-links a:hover { text-decoration: underline; }

.copy-text { margin-top: 1.2rem; color: #6b5a4a; font-size: 0.8rem; }

/* AGE GATE */
.age-gate {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44,26,14,0.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}

.age-box {
  background: var(--warm-cream);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  border: 2px solid var(--warm-gold);
}

.age-box h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--warm-brown);
  margin-bottom: 1rem;
}

.age-box p { color: var(--warm-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }

.age-yes {
  padding: 12px 30px;
  background: var(--warm-gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.3s;
}

.age-no {
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--warm-muted);
  color: var(--warm-muted);
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.age-yes:hover { background: var(--warm-accent); }
.blocked-msg { color: var(--warm-red); font-weight: 700; margin-top: 1rem; display: none; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr 1fr; }
  .alerts-row { grid-template-columns: 1fr; }
  .welcome-banner h1 { font-size: 2.2rem; }
  .welcome-banner { padding: 4rem 2rem 3rem; }
}

@media (max-width: 768px) {
  .burger-btn { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; width: 100%;
    background: var(--warm-dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.8rem;
    border-bottom: 2px solid rgba(184,134,11,0.2);
  }
  .main-nav.visible { display: flex; }
  .features-strip { grid-template-columns: 1fr; padding: 2rem; }
  .inner-page { padding: 90px 1.2rem 40px; }
  .play-hero { padding: 90px 1.2rem 40px; }
}
