.fixed-lang-switch {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 999;
  pointer-events: auto;
}

.fixed-lang-switch ul {
  margin: 0;
  padding: 3px;
  list-style: none;
  display: flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.fixed-lang-switch a {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 0;
  text-decoration: none;
  font: 600 10px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.fixed-lang-switch a:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.06);
}

.fixed-lang-switch li.current a {
  background: rgba(173, 173, 173, 0.4);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  cursor: default;
}

@media (max-width: 480px) {
  .fixed-lang-switch {
    top: 0;
    right: 0;
  }

  .fixed-lang-switch ul {
    padding: 4px;
    gap: 6px;
  }

  .fixed-lang-switch a {
    font-size: 11px;
    padding: 5px 8px;
  }
}
