@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --deep: #1b0a00;
  --warm-bg: #2a1200;
  --card-bg: #3a1f0a;
  --ember: #ff6b2b;
  --flame: #ff9f43;
  --cream: #fff3e0;
  --muted: #c4a882;
  --border: #5a3a1a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--deep); color: var(--cream); line-height: 1.75; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
a { color: var(--flame); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--ember); }

/* TOPBAR */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: linear-gradient(180deg, rgba(27,10,0,0.97), rgba(42,18,0,0.95));
  height: 65px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; border-bottom: 2px solid var(--ember);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: conic-gradient(var(--ember), var(--flame), var(--ember));
  display: flex; align-items: center; justify-content: center;
}
.brand-mark::after {
  content: 'V'; font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.2rem; color: var(--deep);
}
.brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--flame);
}
.topbar nav ul { display: flex; gap: 1.8rem; list-style: none; }
.topbar nav a { color: var(--cream); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.topbar nav a:hover { color: var(--flame); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 6px 0; border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
  .burger { display: block; }
  .topbar nav ul {
    position: fixed; top: 65px; left: 0; right: 0;
    background: rgba(27,10,0,0.98); flex-direction: column; padding: 1.5rem 2rem;
    transform: translateX(100%); transition: transform 0.35s; gap: 1.2rem;
    border-bottom: 2px solid var(--border);
  }
  .topbar nav ul.open { transform: translateX(0); }
}

/* BANNER */
.banner {
  margin-top: 65px; padding: 6rem 2rem 4rem; text-align: center;
  background: linear-gradient(135deg, #3a0f00 0%, #1b0a00 50%, #2a1800 100%);
  position: relative; overflow: hidden;
}
.banner::after {
  content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,107,43,0.2), transparent 70%);
}
.banner h1 { font-size: clamp(2rem, 5vw, 3.8rem); position: relative; z-index: 1; line-height: 1.2; margin-bottom: 1.2rem; }
.banner h1 em { font-style: normal; color: var(--flame); }
.banner p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-link {
  display: inline-block; padding: 14px 42px; background: var(--ember); color: #fff;
  font-weight: 700; font-size: 1rem; border-radius: 6px; text-transform: uppercase;
  letter-spacing: 1px; transition: background 0.3s, transform 0.3s; position: relative; z-index: 1;
}
.cta-link:hover { background: var(--flame); transform: translateY(-2px); color: #fff; }

/* BADGES */
.badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem;
  padding: 3rem 2rem; max-width: 1100px; margin: 0 auto;
}
.badge {
  background: var(--card-bg); border-left: 4px solid var(--ember); padding: 1.5rem 2rem;
  flex: 1 1 280px; border-radius: 0 10px 10px 0;
}
.badge h3 { color: var(--flame); font-size: 1.1rem; margin-bottom: 0.5rem; }
.badge p { color: var(--muted); font-size: 0.92rem; }

/* GAME AREA */
.game-area { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.game-area h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.5rem; color: var(--flame); }
.game-frame {
  border: 3px solid var(--border); border-radius: 12px; overflow: hidden;
  background: #000; box-shadow: 0 0 30px rgba(255,107,43,0.1);
}
.game-frame iframe { display: block; width: 100%; height: 600px; border: none; }
@media (max-width: 768px) { .game-frame iframe { height: 380px; } }

/* COLUMNS */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.col-box { background: var(--card-bg); padding: 2rem; border-radius: 10px; border: 1px solid var(--border); }
.col-box h3 { color: var(--ember); font-size: 1.15rem; margin-bottom: 0.8rem; }
.col-box p { color: var(--muted); font-size: 0.93rem; }

/* TICKER */
.ticker-bar {
  background: var(--warm-bg); padding: 2.5rem 2rem; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ticker-bar .stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.ticker-bar .stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--flame); }
.ticker-bar .stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

/* FOOTER */
footer {
  background: var(--warm-bg); padding: 2.5rem 2rem; text-align: center;
  border-top: 1px solid var(--border);
}
.ft-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ft-nav a { color: var(--muted); font-size: 0.88rem; }
.ft-nav a:hover { color: var(--flame); }
.ft-responsible { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1rem; }
.ft-responsible p { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; }
.ft-responsible a { color: var(--muted); margin: 0 0.8rem; font-size: 0.82rem; }
.ft-copy { margin-top: 1.2rem; font-size: 0.78rem; color: var(--muted); }

/* INNER PAGES */
.inner-hero { margin-top: 65px; padding: 4rem 2rem 2.5rem; text-align: center; background: var(--warm-bg); }
.inner-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.inner-hero p { color: var(--muted); max-width: 550px; margin: 0 auto; }
.inner-body { max-width: 860px; margin: 0 auto; padding: 2.5rem 2rem 4rem; }
.inner-body h2 { font-size: 1.4rem; color: var(--ember); margin: 2rem 0 0.8rem; }
.inner-body h3 { font-size: 1.1rem; color: var(--flame); margin: 1.5rem 0 0.6rem; }
.inner-body p { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.inner-body ul { color: var(--muted); margin: 0.8rem 0 1rem 1.5rem; }
.inner-body ul li { margin-bottom: 0.4rem; }

/* PLAY PAGE */
.play-wrap { margin-top: 65px; padding: 3rem 2rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.play-wrap h1 { text-align: center; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; margin-top: 65px; }
.play-info { text-align: center; color: var(--muted); max-width: 650px; margin: 0 auto 2rem; }

/* AGE GATE */
.age-wall { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-box { background: var(--card-bg); border: 2px solid var(--ember); border-radius: 14px; padding: 2.5rem 2rem; text-align: center; max-width: 420px; width: 90%; }
.age-box h2 { font-size: 1.5rem; color: var(--flame); margin-bottom: 0.8rem; }
.age-box p { color: var(--muted); margin-bottom: 1.5rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }
.ab { padding: 11px 32px; border-radius: 6px; border: none; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: 0.3s; }
.ab-y { background: var(--ember); color: #fff; }
.ab-y:hover { background: var(--flame); }
.ab-n { background: transparent; border: 2px solid var(--muted); color: var(--muted); }
.age-denied { display: none; text-align: center; padding: 2rem; }
.age-denied h2 { color: #e53935; margin-bottom: 1rem; }
.gone { display: none !important; }
