
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 42px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(130, 165, 220, 0.24);
  background: rgba(3, 9, 18, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.language-toggle button {
  appearance: none;
  border: 0;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  color: rgba(238, 244, 255, 0.72);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.language-toggle button:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.language-toggle button.is-active {
  color: #08111c;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@media (max-width: 720px) {
  .language-toggle {
    width: max-content;
  }
}
