/* ============ BOOT BAR ============ */
.boot-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 10px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  background: rgba(3, 5, 14, 0.92);
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}
.boot-bar-left { color: var(--cyan); text-transform: uppercase; }
.boot-bar-left .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan-glow-strong);
  margin-right: 8px;
  animation: blink 2s infinite;
}
@keyframes blink { 0%, 40% { opacity: 1; } 50%, 100% { opacity: 0.3; } }
.boot-bar-right { color: var(--muted); text-transform: uppercase; }
.boot-bar-right span { color: var(--gold); }

