/* ========== 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;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("../texture/brick1.png");
  background-repeat: repeat;
  background-size: 300px;

  opacity: 0.05;

  pointer-events: none;
  z-index: 0;
}


.container {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* ========== HEADER ========== */
.title {
  margin: 10px auto 10px;
  padding-bottom: 12px;
  width: fit-content;
  font-family: 'Jacquard 12', cursive;
  font-size: 40px;
  color: #ff4fd8;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: none;
  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);
  }
}