/* Reset och grund */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  font-family: 'Courier New', monospace;
}

/* Neon-text */
.neon {
  font-size: 5rem;
  color: #0ff;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #0ff,
    0 0 40px #0ff;
  animation: flicker 2s infinite;
}

/* Undertext */
.subtext {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #555;
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Faux-flicker-animation */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}

/* Klick-effekt på subtext */
.subtext.active {
  color: #0ff;
  opacity: 1;
  text-shadow: 0 0 10px #0ff;
}
