/* Preview-only version switcher. Remove this bar (and this file) before launch. */

.version-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px;
  background: #14161c;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  position: relative;
  z-index: 60;
}

.version-bar .version-label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.version-bar nav {
  display: flex;
  gap: 6px;
}

.version-bar a {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.version-bar a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.version-bar a.active {
  background: #fff;
  border-color: #fff;
  color: #14161c;
}

@media (max-width: 480px) {
  .version-bar .version-label { display: none; }
}
