/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== PAGE BACKGROUND ========== */
body {
  background: radial-gradient(circle at top, #1a0f1f, #07040a);
  font-family: 'UnifrakturCook', cursive;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  text-align: center;
  padding: 20px;
}

/* ========== HEADER ========== */
h1 {
  margin: 24px auto 20px;
  padding-bottom: 12px;
  width: fit-content;
  font-size: 30px;
  color: #ff4fd8;
  letter-spacing: 0.2em;
  text-align: center;
  text-shadow:
    0 0 6px #ff4fd8,
    0 0 18px rgba(255, 79, 216, 0.7),
    0 0 40px rgba(255, 79, 216, 0.35);
  animation: neonFlicker 4.5s infinite;
}

@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 6px #ff4fd8,
      0 0 18px rgba(255, 79, 216, 0.7),
      0 0 40px rgba(255, 79, 216, 0.35);
  }
  19%, 21%, 24%, 54%, 56% {
    opacity: 0.55;
    text-shadow:
      0 0 3px #ff4fd8,
      0 0 10px rgba(255, 79, 216, 0.4);
  }
  70% {
    opacity: 0.9;
    text-shadow:
      0 0 7px #ff4fd8,
      0 0 22px rgba(255, 79, 216, 0.75),
      0 0 55px rgba(255, 79, 216, 0.45);
  }
  71% {
    opacity: 0.2;
    text-shadow: 0 0 2px rgba(255, 79, 216, 0.2);
  }
  72% {
    opacity: 1;
    text-shadow:
      0 0 6px #ff4fd8,
      0 0 18px rgba(255, 79, 216, 0.7),
      0 0 40px rgba(255, 79, 216, 0.35);
  }
}