.countdown {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    min-width: 90px;
    padding: 1.5rem 1rem;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 4, 41, 0.15);
}

.time-box span:first-child {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-box .label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .countdown {
        gap: 1rem;
    }
    .time-box {
        min-width: 75px;
        padding: 1.2rem 0.8rem;
    }
    .time-box span:first-child {
        font-size: 2rem;
    }
    .time-box .label {
        font-size: 0.65rem;
    }
}
