/* lang-switcher.css */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18,21,28,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 5px;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 7px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
  font-family: inherit;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

.lang-btn.active {
  background: rgba(34, 211, 238, 0.12);
  color: #22d3ee;
}

/* Mobile — slightly smaller */
@media (max-width: 600px) {
  .lang-btn { font-size: 0.63rem; padding: 3px 6px; }
}
