/* ════════════════════════════════════════════
   VERSION BAR — shared across all version pages
   Fixed top strip: links back to hub, shows version name.
   ════════════════════════════════════════════ */

.version-bar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1.5rem;
  background: rgba(10, 8, 5, 0.96);
  border-block-end: 1px solid rgba(155, 120, 48, 0.18);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.version-bar__back {
  color: rgba(107, 94, 74, 0.8);
  text-decoration: none;
  transition: color 200ms ease;
}

.version-bar__back:hover {
  color: rgba(234, 224, 204, 0.9);
}

.version-bar__name {
  color: rgba(155, 120, 48, 0.7);
}
