.lang-switch { display: flex; gap: 6px; align-items: center; }
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  height: 32px;
  padding: 0 11px;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s;
  box-sizing: border-box;
}
.lang-switch a.active {
  border-color: var(--accent);
  color: var(--accent);
}
.lang-switch a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
