.animate-scroll {
        will-change: transform;
        animation: scroll-animation linear infinite;
    }

    @keyframes scroll-animation {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }