body {
  margin: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  color: #ff4d4f;
  font-family: 'Arial Black', Gadget, sans-serif;
  user-select: none;
}

.center-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.center-message h1 {
  font-size: 4rem;
  animation: flicker 1s infinite alternate;
}

.center-message p {
  font-size: 1.5rem;
  color: #ff8787;
}

.flying-text {
  position: absolute;
  font-size: 1.2rem;
  color: #ff4d4f;
  font-weight: bold;
  pointer-events: none;
  animation: fly 10s linear infinite;
  white-space: nowrap;
}

@keyframes fly {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-200vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes flicker {
  0% { opacity: 1; }
  100% { opacity: 0.7; }
}
