.scroll-text {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  font-weight: bold;
}

.scroll-text {
  animation: scroll-left 15s linear infinite;
}

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

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-text {
    animation: none;
  }
}
