.scrolling-text-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.scrolling-text-content {
    display: block;
    white-space: normal;
    position: absolute;
    width: 100%;
    animation-play-state: running;
}

.scrolling-text-wrapper:hover .scrolling-text-content {
    animation-play-state: paused;
}

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

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

@keyframes scroll-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

@keyframes scroll-down {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}
