body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #a8d5ba, #e0e0e0); /* Soft gradient background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Hide scrollbar for snowflakes */
    position: relative; /* For snowflake positioning */
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 700px;
    z-index: 10; /* Ensure content is above snowflakes */
}

h1 {
    color: #c0392b; /* Red */
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #2c3e50;
}

.countdown {
    margin-top: 30px;
    border-top: 2px dashed #ccc;
    padding-top: 20px;
}

.countdown p {
    font-size: 1.5em;
    font-weight: bold;
    color: #27ae60; /* Green */
}

/* Snowflake animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allow interaction with elements behind snowflakes */
    z-index: 1; /* Below content */
}

.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    animation: fall linear infinite;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes fall {
    0% {
        transform: translateY(-10%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Positioning for snowflakes */
.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 9s; animation-delay: 1s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 3s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 8s; animation-delay: 0s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 13s; animation-delay: 4s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 10s; animation-delay: 2s; }

/* Add more snowflakes for a denser effect */
.snowflake:nth-child(8) { left: 15%; animation-duration: 9s; animation-delay: 5s; }
.snowflake:nth-child(9) { left: 25%; animation-duration: 11s; animation-delay: 6s; }
.snowflake:nth-child(10) { left: 35%; animation-duration: 10s; animation-delay: 7s; }
.snowflake:nth-child(11) { left: 45%; animation-duration: 12s; animation-delay: 8s; }
.snowflake:nth-child(12) { left: 55%; animation-duration: 8s; animation-delay: 9s; }
.snowflake:nth-child(13) { left: 65%; animation-duration: 13s; animation-delay: 10s; }
.snowflake:nth-child(14) { left: 75%; animation-duration: 9s; animation-delay: 11s; }
.snowflake:nth-child(15) { left: 85%; animation-duration: 11s; animation-delay: 12s; }
.snowflake:nth-child(16) { left: 90%; animation-duration: 10s; animation-delay: 13s; }
.snowflake:nth-child(17) { left: 5%; animation-duration: 12s; animation-delay: 14s; }
.snowflake:nth-child(18) { left: 95%; animation-duration: 8s; animation-delay: 15s; }
