/* --- COUNTDOWN - SNOW THEME ANIMATIONS --- */
.countdown-box {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.15) 0%,
            rgba(59, 130, 246, 0.2) 50%,
            rgba(139, 92, 246, 0.15) 100%);
    border-radius: 16px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(6, 182, 212, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* Snow container for falling snowflakes */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Animated snowflakes */
.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) {
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.snowflake:nth-child(2) {
    left: 20%;
    animation-duration: 10s;
    animation-delay: 1s;
    font-size: 1.8rem;
}

.snowflake:nth-child(3) {
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
    font-size: 1rem;
}

.snowflake:nth-child(4) {
    left: 50%;
    animation-duration: 9s;
    animation-delay: 0.5s;
    font-size: 1.5rem;
}

.snowflake:nth-child(5) {
    left: 60%;
    animation-duration: 11s;
    animation-delay: 1.5s;
    font-size: 1.3rem;
}

.snowflake:nth-child(6) {
    left: 75%;
    animation-duration: 10s;
    animation-delay: 3s;
    font-size: 1.6rem;
}

.snowflake:nth-child(7) {
    left: 85%;
    animation-duration: 13s;
    animation-delay: 2.5s;
    font-size: 1.1rem;
}

.snowflake:nth-child(8) {
    left: 95%;
    animation-duration: 9s;
    animation-delay: 1s;
    font-size: 1.4rem;
}

@keyframes snowfall {
    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* Animated ski icon */
.ski-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: skiSlide 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes skiSlide {

    0%,
    100% {
        transform: translateX(-10px) rotate(-5deg);
    }

    50% {
        transform: translateX(10px) rotate(5deg);
    }
}

/* Countdown number with pulse animation */
.countdown-timer {
    position: relative;
    z-index: 10;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    animation: pulse 2s ease-in-out infinite;
    margin: 10px 0;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Labels */
.countdown-label {
    position: relative;
    z-index: 10;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-sublabel {
    position: relative;
    z-index: 10;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}