/* Экран выбора языка. */

.lang-screen {
  gap: 6px;
  padding-bottom: 24px;
}

.lang-globe {
  font-size: 56px;
  margin-bottom: 6px;
  filter: drop-shadow(0 6px 16px rgba(47, 123, 255, .35));
}

.lang-title {
  text-align: center;
  line-height: 1.3;
}
.lang-title-en {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.lang-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-top: 28px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(77, 163, 255, .22);
  border-top-color: rgba(120, 180, 255, .35);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--nav-bg-2), var(--nav-bg-1));
  color: #dce9ff;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 20, 45, .25);
  transition: transform .12s ease, box-shadow .2s ease;
}
.lang-option:active {
  transform: scale(.97);
  box-shadow: 0 4px 12px rgba(10, 20, 45, .3);
}

.lang-flag { font-size: 26px; }
