.language-switcher {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(6, 43, 79, 0.88);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.language-switcher a {
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
  background: #c9a45c;
  color: #062b4f;
}

.language-switcher a.active {
  cursor: default;
}
