/* --- BACKGROUND EFFECTS --- */
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1; /* JAVÍTÁS: A havazás is garantáltan hátul lesz */
}

#skier-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1; /* JAVÍTÁS: A síelőt garantáltan a háttérbe helyezi */
}

.skier-image {
    position: absolute;
    width: 50px;
    height: auto;
    will-change: transform, opacity;
    animation: ski-down 8s ease-in-out forwards;
}

@keyframes ski-down {
    0% {
        transform: translate(5vw, 15vh) rotate(-10deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(40vw, 80vh) rotate(5deg);
        opacity: 0;
    }
}
