.countdown-container {
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    margin: 20px 0;
    display: none;
}

.countdown-container.active {
    display: block;
}

.countdown-header {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 8px;
}

.countdown-subtitle {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: flex-start;
    gap: 13px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    background: #fef9e7;
    color: #f6be3f;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    min-width: 55px;
    padding: 12px 16px;
    border-radius: 6px;
    width: 62px;
}

.time-label {
    font-size: 11px;
    color: #999;
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 15px;
    }

    .time-value {
        font-size: 28px;
        min-width: 45px;
        padding: 10px 12px;
    }

    .countdown-header {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .countdown-container  {
        background: white;
        padding: 20px;
        width: fit-content;
    }
}