
.global-lang-switcher{
  position:fixed;
  top:12px;
  right:12px;
  z-index:999999;
  display:inline-flex;
  gap:6px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(231,196,90,.30);
  background:rgba(7,20,11,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
}
.global-lang-switcher button{
  min-width:44px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(231,196,90,.22);
  background:rgba(231,196,90,.08);
  color:#fff1bf;
  font:700 12px/1 Arial,Helvetica,sans-serif;
  cursor:pointer;
}
.global-lang-switcher button.active{
  background:linear-gradient(180deg, rgba(231,196,90,.30), rgba(231,196,90,.16));
  border-color:rgba(241,203,85,.56);
  color:#fff8d6;
}
@media (max-width:760px){
  .global-lang-switcher{
    top:10px;
    right:10px;
    gap:4px;
    padding:5px;
  }
  .global-lang-switcher button{
    min-width:40px;
    min-height:30px;
    padding:0 10px;
    font-size:11px;
  }
}
