.skip-shared-intro #introScreen {
  display: none !important;
}

html[data-site-version="classic"],
html[data-site-version="classic"] body {
  max-width: 100%;
  overflow-x: clip;
}

.version-switcher {
  --switch-text: rgba(230, 250, 247, .64);
  --switch-active: #f4fffd;
  position: fixed;
  top: 86px;
  right: clamp(18px, 3.7vw, 56px);
  z-index: 920;
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid rgba(183, 235, 230, .2);
  border-radius: 999px;
  background: rgba(2, 13, 20, .7);
  box-shadow: 0 14px 44px rgba(0, 4, 10, .3), inset 0 1px rgba(255, 255, 255, .05);
  color: var(--switch-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.version-switcher__label {
  padding: 0 8px 0 10px;
  color: rgba(202, 238, 235, .4);
  font-size: 8px;
  letter-spacing: .16em;
}

.version-switcher__option {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--switch-text);
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease;
}

.version-switcher__option::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: .38;
}

.version-switcher__option:hover {
  color: rgba(244, 255, 253, .9);
  background: rgba(114, 220, 208, .08);
}

.version-switcher__option[aria-current="page"] {
  border-color: rgba(151, 235, 226, .18);
  background: rgba(132, 226, 216, .13);
  color: var(--switch-active);
}

.version-switcher__option[aria-current="page"]::before {
  background: #72e2d5;
  box-shadow: 0 0 9px rgba(114, 226, 213, .9);
  opacity: 1;
}

.version-switcher__option:focus-visible {
  outline: 2px solid #8de9df;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .version-switcher {
    top: auto;
    right: auto;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
  }

  .version-switcher__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .version-switcher__option {
    transition: none;
  }
}
