.topbar {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background: rgba(7,10,18,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}

.topbar-left {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
}

.prompt-tag {
  color: var(--blue-bright);
}

.cursor-static {
  color: var(--red-bright);
}

.topbar-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--text-dim);
  transition: all 0.15s ease;
  position: relative;
}

.nav-link::before {
  content: "$ ";
  color: var(--text-faint);
}

.nav-link:hover {
  color: var(--blue-bright);
  border-color: var(--blue-dim);
  background: rgba(59,130,246,0.06);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-faint);
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.8s ease-in-out infinite;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-top: 1px solid var(--panel-border);
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-blink {
  animation: blink 1s steps(1) infinite;
  color: var(--red-bright);
}
