@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Crimson+Text:wght@400;600;700&display=swap');

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

:root {
  --rose: #f472b6;
  --rose-dim: #db2777;
  --violet: #8b5cf6;
  --bg: #0f0510;
  --bg-alt: #150818;
  --surface: #1e0e24;
  --text: #fce7f3;
  --muted: #a87fa0;
  --glow: rgba(244, 114, 182, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Crimson Text', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; }
a { color: var(--rose); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* HEADER */
.top-header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(15, 5, 16, 0.94);
  backdrop-filter: blur(14px);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 1px solid var(--glow);
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav { display: flex; gap: 1.8rem; list-style: none; }
.main-nav a { color: var(--muted); font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.9rem; }
.main-nav a:hover { color: var(--rose); }

.mob-btn { display: none; background: none; border: none; cursor: pointer; }
.mob-btn span { display: block; width: 24px; height: 2px; background: var(--rose); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero-main {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(175deg, var(--bg) 0%, #1a0520 50%, var(--bg) 100%);
  padding: 100px 2rem 60px;
  position: relative;
}
.hero-main::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,114,182,0.06), transparent 70%);
  top: 10%; right: -100px;
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; max-width: 740px; }
.hero-inner h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800; margin-bottom: 1.3rem;
}
.hero-inner h1 .pink { color: var(--rose); }
.hero-inner h1 .pur { color: var(--violet); }
.hero-inner p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-cta {
  display: inline-block;
  padding: 15px 42px;
  background: linear-gradient(135deg, var(--rose), var(--violet));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 14px;
  font-size: 1rem;
  transition: 0.3s;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(244,114,182,0.25); color: #fff; }

/* ALERTS */
.alert-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding: 70px 2rem;
  max-width: 1200px; margin: 0 auto;
}
.alert-box {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--glow);
  transition: 0.3s;
}
.alert-box:hover { border-color: var(--rose); }
.alert-box .ico { font-size: 2.2rem; margin-bottom: 0.8rem; }
.alert-box h3 { color: var(--rose); font-size: 1.1rem; margin-bottom: 0.4rem; }
.alert-box p { color: var(--muted); font-size: 0.9rem; }

/* GAME */
.game-spotlight {
  padding: 80px 2rem;
  background: var(--bg-alt);
}
.game-spotlight h2 { text-align: center; font-size: 2.1rem; margin-bottom: 0.5rem; }
.game-spotlight .tagline { text-align: center; color: var(--muted); max-width: 520px; margin: 0 auto 2.5rem; }
.game-box {
  max-width: 940px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  border: 2px solid rgba(244,114,182,0.15);
  box-shadow: 0 0 60px rgba(244,114,182,0.06);
}
.game-box iframe { width: 100%; height: 580px; border: none; background: #000; }

/* HIGHLIGHTS */
.hl-section {
  padding: 80px 2rem;
  background: var(--bg);
}
.hl-section h2 { text-align: center; font-size: 1.9rem; margin-bottom: 2.5rem; }
.hl-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
}
.hl-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 14px;
  border-left: 4px solid var(--violet);
}
.hl-card h3 { color: var(--rose); margin-bottom: 0.5rem; }
.hl-card p { color: var(--muted); font-size: 0.93rem; }

/* FOOTER */
.site-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--glow);
}
.site-footer .resp a { color: var(--muted); margin: 0 0.8rem; font-size: 0.88rem; }
.site-footer .resp a:hover { color: var(--rose); }
.site-footer .note { color: var(--muted); font-size: 0.78rem; margin-top: 0.8rem; }

/* AGE */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
}
.age-card {
  background: var(--surface);
  border: 2px solid var(--rose);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px; width: 90%;
}
.age-card h2 { color: var(--rose); margin-bottom: 0.6rem; }
.age-card p { color: var(--muted); margin-bottom: 1.8rem; font-size: 0.93rem; }
.age-card .btns { display: flex; gap: 1rem; justify-content: center; }
.age-card button {
  padding: 12px 30px; border-radius: 14px; font-weight: 600;
  cursor: pointer; border: 2px solid var(--rose); font-size: 0.93rem;
  font-family: 'Outfit', sans-serif; transition: 0.3s;
}
.age-card .yes { background: linear-gradient(135deg, var(--rose), var(--violet)); color: #fff; border: none; }
.age-card .yes:hover { opacity: 0.9; }
.age-card .no { background: transparent; color: var(--rose); }
.age-card .no:hover { background: rgba(244,114,182,0.08); }
.invisible { display: none !important; }

/* TEXT */
.text-wrap {
  max-width: 870px; margin: 0 auto; padding: 110px 2rem 80px;
}
.text-wrap h1 { font-size: 2.4rem; margin-bottom: 1.5rem; color: var(--rose); }
.text-wrap h2 { font-size: 1.3rem; margin: 1.8rem 0 0.7rem; color: var(--violet); font-family: 'Outfit', sans-serif; }
.text-wrap p { color: var(--muted); margin-bottom: 1rem; }
.text-wrap ul { color: var(--muted); margin: 1rem 0 1rem 1.5rem; }
.text-wrap li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .mob-btn { display: block; }
  .main-nav {
    position: fixed; top: 68px; right: 0; width: 70%;
    background: rgba(15,5,16,0.98);
    flex-direction: column; padding: 2rem; gap: 1.2rem;
    height: calc(100vh - 68px);
    transform: translateX(100%); transition: 0.3s;
  }
  .main-nav.visible { transform: translateX(0); }
  .alert-grid { grid-template-columns: 1fr; }
  .hl-cards { grid-template-columns: 1fr; }
  .game-box iframe { height: 380px; }
}
