body {
  background: radial-gradient(circle at center, #000010, #020024, #000);
  color: #00ffcc;
  font-family: "Comic Sans MS", "Courier New", monospace;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  animation: bgFlash 3s infinite alternate;
}

/* Flashing background */
@keyframes bgFlash {
  0% { background-color: #000010; }
  25% { background-color: #001a33; }
  50% { background-color: #330033; }
  75% { background-color: #002a2a; }
  100% { background-color: #000010; }
}

.container {
  margin-top: 50px;
  text-shadow: 0 0 10px #00fff2, 0 0 20px #ff00ff, 0 0 40px #00ffff;
}

h1 {
  font-size: 4rem;
  color: #ff00ff;
  text-shadow: 0 0 20px #00ffff, 0 0 40px #ff00ff;
  animation: blinkText 1s infinite alternate;
}

@keyframes blinkText {
  0% { opacity: 1; }
  100% { opacity: 0.4; }
}

.marquee, .marquee2 {
  background: repeating-linear-gradient(
    45deg,
    #00ffff,
    #00ffff 10px,
    #ff00ff 10px,
    #ff00ff 20px
  );
  color: black;
  font-weight: bold;
  padding: 10px 0;
  margin: 15px 0;
  text-transform: uppercase;
  border: 3px double #00ffff;
}

.gif {
  width: 250px;
  height: auto;
  margin: 20px auto;
  border: 5px ridge #ff00ff;
  box-shadow: 0 0 25px #00ffff;
}

.glow-text {
  font-size: 1.3rem;
  margin: 20px auto;
  color: #00ffff;
  text-shadow: 0 0 10px #00fff2, 0 0 20px #00ffff, 0 0 30px #ff00ff;
  animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.links a {
  display: inline-block;
  margin: 10px;
  padding: 10px 25px;
  background: linear-gradient(90deg, #ff00ff, #00ffff);
  color: black;
  text-decoration: none;
  font-weight: bold;
  border: 3px groove #00ffff;
  box-shadow: 0 0 15px #00ffff;
  text-transform: uppercase;
  transition: 0.2s;
}

.links a:hover {
  transform: rotate(-3deg) scale(1.1);
  box-shadow: 0 0 30px #ff00ff, 0 0 60px #00ffff;
}

footer {
  margin-top: 30px;
  color: #00ffff;
  font-size: 0.9rem;
  text-shadow: 0 0 5px #ff00ff, 0 0 10px #00ffff;
}
