@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --bg: #1a0a00;
  --surface: #2d1506;
  --flame: #ff6b2c;
  --ember: #ff9a56;
  --lava: #e63e00;
  --cream: #fff3e0;
  --text: #ddc4a8;
  --white: #fff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3 { font-family: 'Righteous', cursive; color: var(--cream); }
a { color: var(--ember); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--flame); }

.topbar {
  background: linear-gradient(90deg, var(--surface), var(--bg));
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0 2rem;
  border-bottom: 3px solid var(--flame);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Righteous', cursive;
  font-size: 1.6rem;
  color: var(--flame);
}

.brand svg { width: 36px; height: 36px; }

.top-nav { display: flex; list-style: none; gap: 1.5rem; }

.top-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.top-nav a:hover { color: var(--flame); }

.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.ham-btn span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--flame);
  margin: 5px 0;
  border-radius: 3px;
}

/* HERO FULL */
.hero-full {
  background: radial-gradient(ellipse at center bottom, var(--surface) 0%, var(--bg) 70%);
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.hero-full::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lava), var(--flame), var(--ember), var(--flame), var(--lava));
}

.hero-full h1 {
  font-size: 3rem;
  color: var(--flame);
  margin-bottom: 1rem;
}

.hero-full p {
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(221,196,168,0.85);
}

.fire-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--lava), var(--flame));
  color: #fff;
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  border-radius: 8px;
  transition: 0.3s;
}

.fire-btn:hover { background: linear-gradient(135deg, var(--flame), var(--ember)); color: #fff; transform: scale(1.05); }

/* WARNINGS */
.warn-strip {
  display: flex;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.warn-box {
  flex: 1;
  min-width: 250px;
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 3px solid var(--flame);
  text-align: center;
}

.warn-box .ico { font-size: 2rem; margin-bottom: 0.5rem; }
.warn-box h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--ember); }
.warn-box p { font-size: 0.87rem; color: rgba(221,196,168,0.65); }

/* SECTION */
.sec {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.sec h2 { text-align: center; font-size: 2rem; margin-bottom: 1rem; }
.sec .lead { text-align: center; max-width: 750px; margin: 0 auto 2rem; color: rgba(221,196,168,0.8); }

.game-box {
  max-width: 940px;
  margin: 0 auto;
  border: 3px solid var(--flame);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,107,44,0.15);
}

.game-box iframe {
  width: 100%;
  height: 580px;
  border: none;
  display: block;
}

/* THREE COL */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.col-card {
  background: var(--surface);
  border-radius: 10px;
  padding: 2rem;
  border-bottom: 3px solid var(--flame);
}

.col-card .ico { font-size: 2rem; margin-bottom: 0.8rem; }
.col-card h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.col-card p { font-size: 0.9rem; color: rgba(221,196,168,0.7); }

/* COUNTER */
.counter-row {
  display: flex;
  justify-content: space-around;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border-radius: 12px;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.counter-item { text-align: center; padding: 1rem; }
.counter-item .val { font-family: 'Righteous', cursive; font-size: 2.2rem; color: var(--flame); }
.counter-item .lbl { font-size: 0.82rem; color: rgba(221,196,168,0.5); margin-top: 0.3rem; }

.ft {
  background: var(--surface);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(255,107,44,0.2);
}

.ft-links a { margin: 0 1rem; color: var(--ember); font-size: 0.9rem; }
.ft-copy { margin-top: 1rem; font-size: 0.75rem; color: rgba(221,196,168,0.35); line-height: 1.9; }

/* AGE */
.age-wall {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-wall.off { display: none; }

.age-card {
  background: var(--surface);
  border: 2px solid var(--flame);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-card h2 { margin-bottom: 1rem; color: var(--flame); font-size: 1.4rem; }
.age-card p { margin-bottom: 1.5rem; }
.age-card-btns { display: flex; gap: 1rem; justify-content: center; }

.age-card-btns button {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.3s;
}

.a-yes { background: linear-gradient(135deg, var(--lava), var(--flame)); color: #fff; }
.a-yes:hover { box-shadow: 0 0 20px rgba(255,107,44,0.5); }
.a-no { background: transparent; border: 1px solid var(--text) !important; color: var(--text); }
.a-no:hover { border-color: #e74c3c !important; color: #e74c3c; }

.pg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  min-height: 55vh;
}

.pg h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--flame); }
.pg h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--ember); }
.pg p { margin-bottom: 1rem; }
.pg ul { margin: 1rem 0 1.5rem 1.5rem; }
.pg ul li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .ham-btn { display: block; }
  .top-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--bg);
    flex-direction: column;
    padding: 1rem 2rem;
    border-bottom: 3px solid var(--flame);
  }
  .top-nav.vis { display: flex; }
  .top-nav li { padding: 0.6rem 0; }
  .hero-full h1 { font-size: 2rem; }
  .hero-full { padding: 3rem 1.5rem 2rem; }
  .three-col { grid-template-columns: 1fr; }
  .game-box iframe { height: 380px; }
  .counter-row { flex-direction: column; gap: 1rem; }
}
