.ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #0b0b0f;
  color: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.ticker__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-move 60s linear infinite;
}

.ticker__item {
  padding: 0 32px;
  font-size: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ticker__name {
  font-weight: 500;
}

.ticker__profit {
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
}

@keyframes ticker-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}