.transit-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.6; }
}

.live-indicator {
  position: fixed;
  top: calc(var(--nav-height) + 12px);
  right: 60px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  z-index: 90;
  opacity: 0;
  transition: opacity var(--transition);
}

.live-indicator.visible {
  opacity: 1;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E06060;
  animation: livepulse 1.5s ease-in-out infinite;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
