/* Countdown Timer Styles */
.countdown-timer {
    background: linear-gradient(45deg, #dc3545, #e74c3c);
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(220, 53, 69, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3); }
}

.countdown-display span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    margin: 0 2px;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

/* Urgency states */
.countdown-timer.timer-warning {
    animation: pulse 1s infinite;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
}

.countdown-timer.timer-critical {
    animation: pulse 0.5s infinite;
    background: linear-gradient(45deg, #ff3838, #c0392b);
}

.countdown-timer.timer-critical .countdown-display span {
    background: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

/* Small timer in CTA section */
.countdown-timer-small {
    display: inline-block;
    animation: subtle-pulse 3s infinite;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-display {
        font-size: 1rem !important;
    }
    
    .countdown-display span {
        min-width: 30px;
        padding: 2px 4px;
    }
}