:root {
  --bg: #010101;
  --text: #f3f3f5;
  --muted: #a1a1aa;
  --magenta: #E040FB;
  --magenta-soft: #7a0f8a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  overflow-x: hidden;
}

.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-box {
  text-align: center;
  max-width: 400px;
  padding: 40px;
}

.age-box h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #E040FB;

  /* Neon Glow */
  text-shadow:
    0 0 6px #E040FB,
    0 0 20px #C026D3,
    0 0 40px #7A0F8A;
}

.age-box p {
  color: #ccc;
  margin: 10px 0;
}

.age-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.age-buttons button {
  padding: 10px 20px;
  border: 1px solid #E040FB;
  background: transparent;
  color: #E040FB;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-buttons button:hover {
  background: #E040FB;
  color: #010101;
  box-shadow: 0 0 10px #E040FB;
}

.denied-box {
  text-align: center;
  max-width: 400px;
  margin: auto;
}

.denied-title {
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #E040FB;

  /* Neon Glow */
  text-shadow:
    0 0 6px #E040FB,
    0 0 16px #C026D3,
    0 0 32px #7A0F8A;

  margin-bottom: 15px;
}

.denied-text {
  color: #aaa;
  font-size: 0.95rem;
}

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition:
    transform 1.1s ease,
    filter 1s ease,
    opacity 0.8s ease;
  will-change: transform, opacity, filter;
}

.logo-icon {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  filter:
    drop-shadow(0 0 0px var(--magenta))
    drop-shadow(0 0 0px var(--magenta-soft));
}

.logo-wordmark {
  width: min(520px, 58vw);
  height: auto;
  opacity: 0;
  transform: translateX(20px);
  filter:
    drop-shadow(0 0 0px var(--magenta))
    drop-shadow(0 0 0px var(--magenta-soft));
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.hero-copy {
  margin-top: 2.5rem;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy p {
  margin: 0.4rem 0;
  color: #d6d6db;
  line-height: 1.6;
}

.site-footer {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  color: #767680;
  font-size: 0.85rem;
}

.hidden {
  visibility: hidden;
}

.show {
  visibility: visible;
}

.icon-lit {
  opacity: 1;
  transform: scale(1);
  filter:
    drop-shadow(0 0 6px var(--magenta))
    drop-shadow(0 0 18px var(--magenta-soft));
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.wordmark-show {
  opacity: 1;
  transform: translateX(0);
  filter:
    drop-shadow(0 0 6px var(--magenta))
    drop-shadow(0 0 18px var(--magenta-soft));
}

.logo-shift-up {
  transform: translateY(-70px);
}

.copy-show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: neonPulse 3.2s ease-in-out infinite;
}

@keyframes neonPulse {
  0% {
    filter:
      drop-shadow(0 0 4px var(--magenta))
      drop-shadow(0 0 10px var(--magenta-soft));
  }
  50% {
    filter:
      drop-shadow(0 0 8px var(--magenta))
      drop-shadow(0 0 22px var(--magenta-soft));
  }
  100% {
    filter:
      drop-shadow(0 0 4px var(--magenta))
      drop-shadow(0 0 10px var(--magenta-soft));
  }
}

@media (max-width: 700px) {
  .logo-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-icon {
    width: 96px;
  }

  .logo-wordmark {
    width: min(320px, 82vw);
  }

  .logo-shift-up {
    transform: translateY(-40px);
  }
}