.site-content[role=main] {
    position: relative;
    z-index: 2;
}
.season-effect {
    position: fixed;
    top: -40px;
    pointer-events: none;
    z-index: 9999;
    user-select: none;
}
/* ===============================
   🍁 AUTUMN – IMAGE BASED
================================ */

.autumn-leaf-wrapper {
    position: fixed;
    top: -40px;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

.autumn-leaf-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    animation: leaf-fall-img linear infinite;
    will-change: transform;
}

@keyframes leaf-fall-img {
    from {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 1;
    }
}

/* ===============================
   SNOW – FINAL ADJUSTMENT
================================ */
.snow-particle {
    position: fixed;
    top: -20px;
    background: radial-gradient(
        circle at 30% 30%,
        #ffffff,
        #f0f0f0 40%,
        #d9d9d9 70%,
        #cfcfcf
    );
    border-radius: 50%;
    box-shadow:
        inset -2px -2px 4px rgba(255,255,255,0.6),
        inset 2px 2px 6px rgba(0,0,0,0.15),
        0 2px 6px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 9999;
    animation-name: snow-fall-full;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* ICON ❄️ */
.snow-icon {
    position: fixed;
    top: -24px;
    pointer-events: none;
    z-index: 9999;
    animation-name: snow-fall-full;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes snow-fall-full {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 1;
    }
}
