﻿.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-title {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.time-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.time-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-separator {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    user-select: none;
    align-self: flex-start;
    margin-top: 0.3rem;
}

.time-value.time-expired {
    font-weight: 400;
    font-family: 'CocogoosePro';
}
