/* ==========================================================
   KOMPONENT: TICKER TAPE (Pasek ESPI)
   ========================================================== */
.ticker-tape {
  width: 100%;
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--overlay-05);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  display: flex;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.ticker-tape__wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-ticker 40s linear infinite;
}

.ticker-tape__wrapper:hover {
  animation-play-state: paused;
}

.ticker-tape__item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  font-size: 13px;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s;
}

.ticker-tape__item:hover {
  color: var(--text-main);
}

.ticker-tape__time {
  color: var(--text-muted);
  margin-right: 10px;
  font-size: 11px;
}

.ticker-tape__symbol {
  color: var(--neon-cyan);
  font-weight: bold;
  margin-right: 10px;
  background: rgba(0, 212, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}