/* Default Blue Pulse */
.animate-pulse {
animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
0% { transform: scale(1); }
50% { transform: scale(1.03); text-shadow: 0 0 8px rgba(0,123,255,0.3); }
100% { transform: scale(1); }
}

/* Cool Colors Glow (Active for 20 mins after update) */
.count-updated {
animation: cool-glow 1.5s infinite alternate !important;
}

@keyframes cool-glow {
from { color: #00d2ff; text-shadow: 0 0 10px #00d2ff; }
to { color: #9d50bb; text-shadow: 0 0 20px #9d50bb; }
}