/* Стили для снежинок */
.winter-snowflake {
    position: fixed;
    top: -20px;
    z-index: 9998;
    user-select: none;
    pointer-events: none;
    opacity: 0.85;
    color: #fff;
    font-size: 1.1em;
    text-shadow: 0 0 3px rgba(255,255,255,0.7);
}

@keyframes snowfall {
    to { transform: translateY(100vh) rotate(360deg); }
}