.countdown-number {
    color: #ff4800 !important;
}
[data-theme="dark"] .countdown-number {
    color: #ff4800 !important;
}
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: #fff; /* fond blanc, toujours lisible */
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 72, 0, 0.2);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ff4800;
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 72, 0, 0.2);
}

.countdown-label {
    font-size: 0.875rem;
    color: #444; /* gris foncé, toujours lisible */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}