@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --bg: #110808;
  --surface: #1f0f0f;
  --primary: #dc2626;
  --accent: #f87171;
  --gold: #eab308;
  --text: #fce4ec;
  --muted: #fca5a5;
  --border: rgba(220, 38, 38, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 2px; }

a { color: var(--accent); text-decoration: none; transition: 0.25s; }
a:hover { color: var(--gold); }

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 8, 8, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.5rem;
  border-bottom: 2px solid var(--primary);
}

.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand svg { width: 34px; height: 34px; }
.brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.main-nav { list-style: none; display: flex; gap: 1.6rem; }
.main-nav a {
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--primary); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
.burger span {
  width: 24px; height: 2.5px; background: var(--accent); border-radius: 2px; transition: 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.showcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.showcase-inner { max-width: 900px; }
.showcase h1 { font-size: 3.8rem; color: var(--primary); margin-bottom: 1rem; line-height: 1.1; }
.showcase p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }

.action-btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--primary);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s;
}
.action-btn:hover { background: var(--accent); color: var(--bg); transform: scale(1.03); }

.alert-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.alert-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.alert-item:last-child { border-right: none; }
.alert-item h3 { color: var(--primary); font-size: 1rem; margin-bottom: 0.4rem; }
.alert-item p { font-size: 0.9rem; opacity: 0.8; }

.block { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.block h2 { font-size: 2rem; color: var(--primary); margin-bottom: 1.2rem; }
.block p { margin-bottom: 1rem; max-width: 850px; }

.game-frame {
  width: 100%;
  max-width: 960px;
  margin: 2.5rem auto;
  border: 2px solid var(--primary);
  overflow: hidden;
}
.game-frame iframe { width: 100%; height: 580px; border: none; display: block; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.feature-box {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 1.8rem;
}
.feature-box h3 { color: var(--gold); margin-bottom: 0.6rem; font-size: 1rem; }
.feature-box p { font-size: 0.92rem; opacity: 0.85; }
.feature-box ul { padding-left: 1.1rem; font-size: 0.92rem; }
.feature-box li { margin-bottom: 0.3rem; }

footer {
  background: var(--surface);
  border-top: 2px solid var(--primary);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 4rem;
}
.resp-links a { color: var(--muted); margin: 0 0.8rem; font-size: 0.9rem; }
.resp-links a:hover { color: var(--gold); }
footer .small { margin-top: 0.8rem; font-size: 0.78rem; opacity: 0.5; }

/* AGE GATE */
.age-wall {
  position: fixed; inset: 0; background: rgba(17, 8, 8, 0.97); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-panel {
  background: var(--surface); border: 2px solid var(--primary);
  padding: 2.5rem; text-align: center; max-width: 400px; width: 90%;
}
.age-panel h2 { color: var(--primary); margin-bottom: 0.8rem; font-size: 1.5rem; }
.age-panel p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button {
  padding: 0.7rem 2rem; border: none; font-family: 'Oswald', sans-serif;
  font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: 0.2s;
}
.age-btns button:hover { transform: scale(1.04); }
.age-yes { background: var(--primary); color: #fff; }
.age-no { background: transparent; border: 2px solid var(--primary) !important; color: var(--accent); }
.age-wall.hidden { display: none; }

.legal-wrap { max-width: 880px; margin: 0 auto; padding: 7rem 2rem 3rem; }
.legal-wrap h1 { font-size: 2.2rem; color: var(--primary); margin-bottom: 1.5rem; }
.legal-wrap h2 { font-size: 1.3rem; color: var(--gold); margin: 1.6rem 0 0.8rem; }
.legal-wrap p { margin-bottom: 0.9rem; }
.legal-wrap ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-wrap li { margin-bottom: 0.4rem; }

.play-top { text-align: center; padding: 7rem 2rem 2rem; }
.play-top h1 { font-size: 2.5rem; color: var(--primary); margin-bottom: 0.8rem; }
.play-top p { max-width: 600px; margin: 0 auto 1.5rem; }

.control-note {
  background: var(--surface); border-left: 3px solid var(--primary);
  padding: 1.3rem 1.8rem; max-width: 650px; margin: 2rem auto; font-size: 0.93rem;
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 70%; max-width: 280px; height: 100vh;
    background: var(--surface); flex-direction: column; padding: 4rem 2rem; transition: right 0.35s;
    border-left: 2px solid var(--primary);
  }
  .main-nav.open { right: 0; }
  .top-bar { padding: 0.9rem 1.5rem; }
  .showcase h1 { font-size: 2.4rem; }
  .alert-strip { grid-template-columns: 1fr; }
  .game-frame iframe { height: 340px; }
}
