/* NCTE Countdown Timer - Denver 2025 Clean Theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    font-family: 'Bebas Neue', Sans-Serif;
    gap: 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.countdown-unit:not(:last-child):after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0.7;
}

.countdown-unit .number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    color: #ffffff;
    line-height: 0.9;
    margin-bottom: 8px;
}

.countdown-unit .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 1;
    opacity: 0.9;
}

.countdown-expired {
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-unit {
        padding: 0 20px;
    }
    
    .countdown-unit .number {
        font-size: 2.5rem;
    }
    
    .countdown-unit .label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .countdown-unit {
        padding: 0 15px;
    }
    
    .countdown-unit .number {
        font-size: 2rem;
    }
}

/* Custom Color Support */
.countdown-timer[data-font-color] .countdown-unit .number,
.countdown-timer[data-font-color] .countdown-unit .label {
    color: var(--countdown-font-color);
}