* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #f3f4fb;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: .2s ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.lang-switch svg { flex: 0 0 auto; }
