/* ===== MODERN COUNTDOWN STYLES ===== */
.countdown-wrapper {
    background: rgba(23, 37, 49, 0.6); /* Semi-transparent dark bg */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

.countdown-title p {
    color: var(--golden-trumpet);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.countdown-title span {
    font-family: var(--font-family);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--dark-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.countdown-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.countdown-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    font-weight: 500;
}

#countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 2rem);
    margin: 0 auto 2rem;
    padding: 0;
    list-style: none;
}

    #countdown li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(145deg, rgba(23, 37, 49, 0.9), rgba(44, 70, 87, 0.9));
        border-radius: var(--radius-md);
        padding: clamp(1rem, 2vw, 1.5rem);
        width: clamp(80px, 18vw, 130px);
        aspect-ratio: 1/1;
        border: 1px solid rgba(199, 132, 59, 0.3);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

        #countdown li:hover {
            transform: translateY(-5px) scale(1.05);
            border-color: var(--golden-trumpet);
            box-shadow: 0 15px 30px rgba(199, 132, 59, 0.2);
        }

.timenumbers {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to bottom, var(--golden-trumpet), var(--burnt-brass));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

p.timedescription {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 500;
}

/* Fallback for no-js or loading */
#countdown:empty::after {
    content: 'Loading...';
    color: white;
}
