#ticker-bar {
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border-subtle);
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
  white-space: nowrap;
}

#ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: tickerScroll 60s linear infinite;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

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

#ticker-bar:hover #ticker-content {
  animation-play-state: paused;
  color: var(--text-secondary);
}
