/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  background: var(--navy2);
  border-top: 1px solid rgba(0,194,255,0.1);
  border-bottom: 1px solid rgba(0,194,255,0.1);
  padding: 13px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 30s linear infinite;
}
.ticker-item {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,194,255,0.5);
  padding: 0 28px;
  flex-shrink: 0;
}
