@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.animate-glow {
    animation: pulseGlow 4s infinite ease-in-out;
}
