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

body {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 0.2em;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 16vw, 12rem);
  color: #a855f7;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 20px rgba(168,85,247,0.4),
    0 0 60px rgba(168,85,247,0.2);
}

p {
  font-family: 'DM Mono', monospace;
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 300;
  color: #a855f7;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}
