.marquee-container {
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  transition: background-color 0.3s ease;
}

.marquee-container.scrolled {
  background: #09233A;
}

.marquee-content {
  display: inline-block;
  animation: scroll 60s linear infinite;
}

.marquee-item {
  display: inline-block;
  padding: 0 50px;
  color: #07141f;
  font-size: 12px;
  transition: color 0.3s ease;
}

.marquee-container.scrolled .marquee-item {
  color: #fff9f0;
}

.marquee-item::after {
  content: " | ";
  margin-left: 50px;
}

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

.marquee-content:hover {
  animation-play-state: paused;
}
