.flashy-text {
  font-size: clamp(18px, 5vw, 40px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff0066;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Flashy glowing effect */
@keyframes glow {
  from {
    text-shadow: 0 0 5px #ff0066, 0 0 10px #ff3399, 0 0 15px #ff66cc;
    color: #ff0066;
  }
  to {
    text-shadow: 0 0 20px #ff3399, 0 0 30px #ff66cc, 0 0 40px #ff99ff;
    color: #ff33aa;
  }
}

