.snowflake {
    position: fixed;
    top: -10%;
    color: #FFFFFF;
    font-size: 1em;
    user-select: none;
    pointer-events: none;
    z-index: 1000;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(-10%) translateX(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(20px) rotate(180deg);
    }
    100% {
        transform: translateY(100vh) translateX(40px) rotate(360deg);
        opacity: 0.3;
    }
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
}

@media (min-width: 769px) {
    .logo-winter::after {
        content: "⛄";
        font-size: 0.8em;
        margin-left: 5px;
        animation: float 3s ease-in-out infinite;
        display: inline-block;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        25% {
            transform: translateY(-2px) rotate(-5deg);
        }
        50% {
            transform: translateY(-4px) rotate(0deg);
        }
        75% {
            transform: translateY(-2px) rotate(5deg);
        }
    }
}