@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --night: #120808;
  --card-bg: #1e0e0e;
  --crimson: #ef4444;
  --rose: #fca5a5;
  --wine: #991b1b;
  --text-light: #fef2f2;
  --text-fade: #d4a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--night);
  color: var(--text-light);
  line-height: 1.8;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  background: rgba(18, 8, 8, 0.97);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 2px solid var(--wine);
}

.logo-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--crimson);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-link svg { width: 30px; height: 30px; }

.links-row { display: flex; list-style: none; gap: 1.5rem; }

.links-row a {
  color: var(--text-fade);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.25s;
}

.links-row a:hover { color: var(--crimson); }

.ham {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.ham span {
  width: 25px;
  height: 2.5px;
  background: var(--crimson);
  transition: all 0.3s;
}

.ham.active span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.ham.active span:nth-child(2) { opacity: 0; }
.ham.active span:last-child { transform: rotate(-45deg) translate(5px, -6px); }

/* Asymmetric Hero */
.hero-asym {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 100vh;
  padding-top: 62px;
}

.hero-left {
  padding: 5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--night);
}

.hero-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--crimson);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-left p {
  font-size: 1.15rem;
  color: var(--text-fade);
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-red {
  display: inline-block;
  padding: 14px 40px;
  background: var(--crimson);
  color: var(--night);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
  width: fit-content;
}

.btn-red:hover { background: var(--rose); transform: translateY(-2px); }

.hero-right {
  background: linear-gradient(180deg, var(--wine) 0%, var(--night) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right svg { width: 180px; height: 180px; opacity: 0.2; }

/* Alert Boxes */
.alert-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card-bg);
}

.alert-box {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(239, 68, 68, 0.1);
}

.alert-box:last-child { border-right: none; }

.alert-box .ab-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

.alert-box h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--crimson);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alert-box p { color: var(--text-fade); font-size: 0.9rem; }

/* Game Zone */
.game-zone {
  padding: 5rem 2rem;
  text-align: center;
}

.game-zone h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.game-display {
  max-width: 960px;
  margin: 0 auto;
  border: 2px solid var(--wine);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.08);
}

.game-display iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* Staggered Info */
.stagger-section {
  padding: 4rem 3rem;
  background: var(--card-bg);
}

.stagger-item {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(239, 68, 68, 0.08);
  align-items: center;
}

.stagger-item:last-child { border-bottom: none; }

.stagger-item:nth-child(even) { flex-direction: row-reverse; }

.stagger-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(239, 68, 68, 0.15);
  min-width: 80px;
  text-align: center;
}

.stagger-text h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--crimson);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stagger-text p { color: var(--text-fade); font-size: 0.95rem; }

/* Prose */
.text-section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.text-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--crimson);
  margin-bottom: 1.2rem;
}

.text-section p {
  color: var(--text-fade);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Footer */
.footer-bar {
  background: var(--card-bg);
  border-top: 2px solid var(--wine);
  padding: 2.5rem 2rem;
  text-align: center;
}

.flinks {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.flinks a { color: var(--crimson); text-decoration: none; font-size: 0.88rem; }
.flinks a:hover { color: var(--rose); }
.footer-bar p { color: var(--text-fade); font-size: 0.82rem; }

/* Age Gate */
.verify-layer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verify-box {
  background: var(--card-bg);
  border: 2px solid var(--crimson);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 430px;
  width: 90%;
}

.verify-box h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--crimson);
  margin-bottom: 1rem;
}

.verify-box p { color: var(--text-fade); margin-bottom: 2rem; }

.vbtns { display: flex; gap: 1rem; justify-content: center; }

.vbtns button {
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-transform: uppercase;
}

.vbtns .vyes { background: var(--crimson); color: var(--night); }
.vbtns .vno { background: transparent; border: 1px solid var(--text-fade); color: var(--text-fade); }
.vbtns button:hover { opacity: 0.88; }

/* Page layout */
.pg-inner {
  padding: 110px 3rem 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.pg-inner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--crimson);
  margin-bottom: 2rem;
}

.pg-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--rose);
  margin: 2rem 0 0.8rem;
}

.pg-inner p, .pg-inner li {
  color: var(--text-fade);
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
}

.pg-inner ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .ham { display: flex; }

  .links-row {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: var(--night);
    flex-direction: column;
    padding: 80px 2rem;
    transition: right 0.35s;
    border-left: 2px solid var(--wine);
  }

  .links-row.open { right: 0; }

  .hero-asym { grid-template-columns: 1fr; }
  .hero-right { min-height: 200px; }
  .hero-left h1 { font-size: 2.2rem; }
  .alert-row { grid-template-columns: 1fr; }
  .alert-box { border-right: none; border-bottom: 1px solid rgba(239, 68, 68, 0.1); }
  .stagger-item, .stagger-item:nth-child(even) { flex-direction: column; gap: 1rem; }
  .game-display iframe { height: 400px; }
  .pg-inner { padding: 90px 1.5rem 60px; }
}
