
body {
    margin: 0;
    background-size: cover;
    background-position: center;
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
}
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}
#floatingMessage {
    position: absolute;
    top: 30%;
    left: 26%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
}
.content {
    position: relative;
    z-index: 3;
    top: 60%;
    text-align: center;
}
#countdown {
    font-size: 20px;
    margin-top: 20px;
    color: white;
}
