 .trail-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

       .trail-piece {
        position: fixed;
        left: 0;
        top: 0;
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 1;
        pointer-events: none;
        will-change: transform, opacity;
    }

        .trail-piece.animate {
            animation: fadeScale 3s forwards;
        }

        @keyframes fadeScale {
            to {
                opacity: 0;
                transform: translate(-50%, -50%) scale(2.5);
            }
        }