/* Keyframe animations moved out of Razor to avoid Razor/CSS analyzer warnings (CSS041)
   Contains marquee and neon animations used by BarraMenu.razor */

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes neon-glow {
  0%, 100% {
    color: #00ff00;
    text-shadow:
      0 0 10px rgba(0, 255, 0, 1),
      0 0 20px rgba(0, 255, 0, 0.8),
      0 0 30px rgba(0, 255, 0, 0.6),
      0 0 40px rgba(0, 255, 0, 0.4);
  }
  50% {
    color: #66ff66;
    text-shadow:
      0 0 15px rgba(102, 255, 102, 1),
      0 0 30px rgba(102, 255, 102, 0.9),
      0 0 45px rgba(102, 255, 102, 0.7),
      0 0 60px rgba(102, 255, 102, 0.5);
  }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
