.locale-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .35rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(5,7,10,.88);
  box-shadow: 0 8px 28px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  font-family: Arial, Helvetica, sans-serif;
}

.locale-switcher a {
  min-width: 2.1rem;
  padding: .42rem .5rem;
  border-radius: 999px;
  color: #cbd0d6;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
}

.locale-switcher a:hover,
.locale-switcher a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.1);
  outline: none;
}

.locale-switcher a[aria-current="page"] {
  color: #fff;
  background: #d90016;
}

.legal-translation-note {
  margin: 1rem 0 2rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid #d90016;
  background: rgba(217,0,22,.08);
  color: #cfd3d8;
}

@media (max-width: 680px) {
  .locale-switcher {
    top: auto;
    right: .65rem;
    bottom: .65rem;
  }
  .locale-switcher a {
    min-width: 1.9rem;
    padding: .42rem .35rem;
    font-size: .64rem;
  }
}
