.mx3006-stats {
  overflow: hidden;
  border-top: 1px solid #29240f;
  border-bottom: 1px solid #29240f;
  background: #0d0d0b;
  color: #fff;
}

.mx3006-stats__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: mx3006-stats-scroll 28s linear infinite;
  will-change: transform;
}

.mx3006-stats__group {
  display: flex;
  flex: 0 0 auto;
  min-width: 100vw;
}

.mx3006-stats__item {
  display: flex;
  min-width: 270px;
  min-height: 74px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  flex: 1 0 270px;
}

.mx3006-stats__item strong {
  color: #fbc100;
  font-size: 23px;
  font-weight: 900;
}

.mx3006-stats__item span {
  color: #f6f3e8;
  font-size: 11px;
  font-weight: 800;
}

@keyframes mx3006-stats-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 749px) {
  .mx3006-stats__item {
    min-width: 245px;
    min-height: 64px;
    padding: 0 18px;
    flex-basis: 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mx3006-stats__track { animation: none; }
}
