.lang-switch {
  position: fixed;
  top: 102px;
  right: 24px;
  z-index: 120000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 16, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

.lang-switch[hidden],
body.auth-modal-open .lang-switch {
  display: none !important;
}

.lang-switch__item {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.lang-switch__item:hover {
  color: #ffffff;
}

.lang-switch__item.is-active {
  color: #ffb800;
}

@media (max-width: 640px) {
  .lang-switch {
    top: 96px;
    right: 16px;
    gap: 8px;
    padding: 7px 10px;
  }
}
