.home-top10-ticker {
  width: min(760px, 100%);
  max-width: calc(100vw - 32px);
  margin: 10px auto 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.54);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  contain: layout paint;
}

.home-top10-ticker[hidden] {
  display: none;
}

.home-top10-ticker__viewport {
  position: relative;
  min-height: 36px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-top10-ticker__track {
  display: inline-flex;
  width: max-content;
  max-width: none;
  align-items: center;
  gap: 28px;
  padding: 8px 14px;
  white-space: nowrap;
  will-change: transform;
  animation: homeTop10TickerScroll 24s linear infinite;
}

.home-top10-ticker__track--static {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  transform: none;
  animation: none;
}

.home-top10-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(230,233,239,0.92);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.34);
}

.home-top10-ticker__item--gold {
  color: #ffd66b;
}

.home-top10-ticker__item--silver {
  color: #d9e2ef;
}

.home-top10-ticker__item--bronze {
  color: #d89b6a;
}

@keyframes homeTop10TickerScroll {
  from { transform: translate3d(18%, 0, 0); }
  to { transform: translate3d(-100%, 0, 0); }
}

@media (max-width: 640px) {
  .home-top10-ticker {
    margin-top: 8px;
    border-radius: 12px;
  }

  .home-top10-ticker__viewport {
    min-height: 34px;
  }

  .home-top10-ticker__track {
    gap: 22px;
    animation-duration: 22s;
  }

  .home-top10-ticker__item {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-top10-ticker__track {
    transform: none;
    animation: none;
  }
}
