.genyx-lang-switcher {
  position: relative;
  font-family: var(--f, 'Inter', system-ui, sans-serif);
  font-size: 12.5px;
  z-index: 200;
}
.genyx-lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.genyx-lang-switcher-btn:hover {
  border-color: rgba(0, 229, 204, 0.35);
  background: rgba(0, 229, 204, 0.08);
}
.genyx-lang-globe {
  font-size: 14px;
  line-height: 1;
  opacity: 0.9;
}
.genyx-lang-chev {
  font-size: 9px;
  opacity: 0.6;
}
.genyx-lang-switcher.open .genyx-lang-chev {
  transform: rotate(180deg);
}
.genyx-lang-switcher-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 140px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d1120;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.genyx-lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #c8d0e8;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
}
.genyx-lang-option:hover {
  background: rgba(0, 229, 204, 0.1);
  color: #00e5cc;
}
.genyx-lang-option.is-active {
  color: #00e5cc;
  font-weight: 700;
}
#genyxLangMount {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
