.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    background-color: var(--accent-color);
    color: var(--white);
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
}

.countdown-unit {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 500;
}
