/* ==========================================================================
   Radiance Events - Keyframe Animations & Micro-Interactions
   ========================================================================== */

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(225, 0, 122, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(225, 0, 122, 0.8), 0 0 35px rgba(245, 158, 11, 0.4);
  }
}

@keyframes floatGentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-pulse {
  animation: pulseGlow 3s infinite ease-in-out;
}

.animate-float {
  animation: floatGentle 4s infinite ease-in-out;
}
