/* ============================================
   BEAR HUNT – Status & Floating Button Effects
   ============================================ */

/* Status pulse for Bear Hunt day indicator */
.status-pulse {
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(34, 197, 94, 0.2); }
    50%      { box-shadow: 0 0 20px rgba(34, 197, 94, 0.5); }
}

/* Floating bear button animations */
.bear-pulse {
    animation: gentle-pulse 2s infinite ease-in-out,
               glow-border 2s infinite ease-in-out;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

@keyframes glow-border {
    0%, 100% { border-color: rgba(251, 191, 36, 0.5); }
    50%      { border-color: rgba(251, 191, 36, 0.8); }
}

.pulse-dot {
    animation: pulse-dot 1.5s infinite ease-in-out;
}

