/**
 * Sweepstakes System - Frontend Styles
 * Стили для фронтенд-части системы розыгрышей
 */

/**
 * Countdown Timer Animation
 * Анимация обратного отсчёта времени
 */
.countdown-bounce {
    animation: countdown-bounce-animation 0.6s ease-in-out;
}

@keyframes countdown-bounce-animation {
    0%, 20%, 53%, 80%, 100% {
        transform: scale(1);
    }
    40%, 43% {
        transform: scale(1.08);
    }
    70% {
        transform: scale(1.05);
    }
    90% {
        transform: scale(1.02);
    }
}

