.akstar-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.akstar-marquee .marquee-track {
  display: inline-flex;
  will-change: transform;
  animation-name: akstar-marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.akstar-marquee .marquee-content span {
  font-size: 18px;
  font-weight: 500;
  margin: 0 30px;
  color: #333;
  white-space: nowrap;
}

@keyframes akstar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
