html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  background: #1a0a2e;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.stage {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #2a0a4e 0%, #0a0518 100%);
  overflow: hidden;
}

#lava {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: blur(20px) contrast(20);
  mix-blend-mode: screen;
}

#fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #00f0ff;
  text-shadow:
    0 0 20px #00f0ff,
    0 0 40px #ff00cc;
  pointer-events: none;
}

.text h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.text p {
  margin: 1rem 0 0 0;
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  letter-spacing: 0.15em;
  font-style: italic;
  opacity: 0.85;
}
