* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

/* FLOATING BACKGROUND */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 8s infinite ease-in-out;
    z-index: 0;
}

.bg-circle.one {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 15%;
}

.bg-circle.two {
    width: 90px;
    height: 90px;
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

.bg-circle.three {
    width: 150px;
    height: 150px;
    bottom: 5%;
    left: 35%;
    animation-delay: 5s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

main {
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
    z-index: 1;
}

/* LOGO */
.logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    letter-spacing: 1.5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 10px 0 25px;
    opacity: 0.9;
}

/* LOTTIE */
.lottie-container {
    margin: auto;
    max-width: 400px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-top: 20px;
}

footer {
    bottom: 20px;
    font-size: 0.85rem;
    opacity: 0.6;
    width: 100%;
    text-align: center;
}

#snowfall {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 600px) {
    .logo img {
        max-width: 100px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1rem;
    }

    .lottie-container {
        max-width: 250px;
    }

    p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.75rem;
    }
}
