/* css/countdown.css */

.blk_counter {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: white;
    width: 100%;
    border-bottom: 2px solid #e94560;
    padding-top: 10px;   /* Compense la navbar fixe */
}

.counter-title {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Bruno Ace SC', sans-serif;
}

.counter-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 10px;
    margin: 5px;
}

.counter-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.counter-label {
    font-size: 0.9rem;
    text-transform: uppercase;
}