.seasonal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    overflow: hidden;
}

.seasonal-particle {
    position: absolute;
    top: -50px;
    animation: seasonal-fall linear infinite;
    user-select: none;
    pointer-events: none;
}

.seasonal-particle.special {
    opacity: 0.3;
}

@keyframes seasonal-fall {
    to {
        transform: translateY(105vh) rotate(360deg);
    }
}
