/* ─── PN Ticker Bar ─── */

.pn-ticker-wrap {
  overflow: hidden;
  background: #101218;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: .9rem 0;
  position: relative;
  z-index: 1;
}

.pn-ticker {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: pn-ticker-scroll 28s linear infinite;
}

.pn-ticker-item {
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.pn-ticker-item::before {
  content: '◆';
  color: #5be3a0;
  font-size: .5rem;
}

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

/* Pause on hover */
.pn-ticker-wrap:hover .pn-ticker {
  animation-play-state: paused;
}
