
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #0a0e27 0%, #050812 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-container {
    position: relative;
    animation: fadeInUp 1.2s ease-out;
}


.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    user-select: none;
    animation: fall linear infinite;
}


.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 14px; }
.snowflake:nth-child(2) { left: 12%; animation-duration: 12s; animation-delay: 1s; font-size: 16px; }
.snowflake:nth-child(3) { left: 18%; animation-duration: 14s; animation-delay: 2s; font-size: 15px; }
.snowflake:nth-child(4) { left: 25%; animation-duration: 11s; animation-delay: 0.5s; font-size: 18px; }
.snowflake:nth-child(5) { left: 32%; animation-duration: 13s; animation-delay: 1.5s; font-size: 14px; }
.snowflake:nth-child(6) { left: 40%; animation-duration: 15s; animation-delay: 0s; font-size: 17px; }
.snowflake:nth-child(7) { left: 48%; animation-duration: 12s; animation-delay: 2.5s; font-size: 16px; }
.snowflake:nth-child(8) { left: 55%; animation-duration: 16s; animation-delay: 1s; font-size: 15px; }
.snowflake:nth-child(9) { left: 63%; animation-duration: 11s; animation-delay: 3s; font-size: 19px; }
.snowflake:nth-child(10) { left: 70%; animation-duration: 13s; animation-delay: 0.5s; font-size: 14px; }
.snowflake:nth-child(11) { left: 77%; animation-duration: 14s; animation-delay: 2s; font-size: 18px; }
.snowflake:nth-child(12) { left: 84%; animation-duration: 12s; animation-delay: 1.5s; font-size: 16px; }
.snowflake:nth-child(13) { left: 91%; animation-duration: 15s; animation-delay: 0.8s; font-size: 17px; }
.snowflake:nth-child(14) { left: 8%; animation-duration: 13s; animation-delay: 2.2s; font-size: 15px; }
.snowflake:nth-child(15) { left: 95%; animation-duration: 11s; animation-delay: 1.8s; font-size: 16px; }

@keyframes fall {
    0% {
        top: -10%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: translateX(30px) rotate(360deg);
    }
}
