/* Countdown Timer Banner Styles */
.countdown-banner {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    padding: 15px 0;
    margin: 30px 0;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 500;
    font-size: 18px;
}

.timer-icon {
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.timer-icon i {
    font-size: 22px;
    color: white;
}

.timer-text {
    color: white;
    font-weight: 500;
}

.countdown-digits {
    font-weight: 700;
    font-size: 22px;
    color: #f9b934; /* Golden color */
    animation: highlight 1.5s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes highlight {
    0% {
        color: #f9b934;
    }
    50% {
        color: #ffd166;
    }
    100% {
        color: #f9b934;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-banner {
        border-radius: 25px;
        margin: 20px 0;
    }
    
    .timer-container {
        flex-wrap: wrap;
        font-size: 16px;
    }
    
    .countdown-digits {
        font-size: 18px;
    }
}

/* Style spécifique pour les packs pour s'adapter à la nouvelle bannière */
.packs-container {
    margin-top: 20px;
}
