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

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    animation: snowfall linear infinite;
    opacity: 0.7;
}

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

.snowflake:nth-child(2) {
    left: 25%;
    animation-duration: 12s;
    animation-delay: 1s;
}

.snowflake:nth-child(3) {
    left: 40%;
    animation-duration: 10s;
    animation-delay: 2s;
}

.snowflake:nth-child(4) {
    left: 55%;
    animation-duration: 14s;
    animation-delay: 0.5s;
}

.snowflake:nth-child(5) {
    left: 70%;
    animation-duration: 9s;
    animation-delay: 3s;
}

.snowflake:nth-child(6) {
    left: 85%;
    animation-duration: 11s;
    animation-delay: 1.5s;
}

.snowflake:nth-child(7) {
    left: 20%;
    animation-duration: 13s;
    animation-delay: 2.5s;
}

.snowflake:nth-child(8) {
    left: 80%;
    animation-duration: 7s;
    animation-delay: 4s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}