/* Language suggestion: no document reflow and no change to manual links. */
.language-choice {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: max(12px, env(safe-area-inset-right));
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: calc(100vw - 24px);
    min-height: 50px;
    padding: 2px 4px 2px 14px;
    border: 1px solid var(--line-2, #544454);
    border-radius: 12px;
    background: #17101e;
    color: #f6eef7;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    font-family: var(--font-body, sans-serif);
    font-size: 13px;
    line-height: 1.35;
}
.language-choice[hidden] { display: none; }
.language-choice__message { max-width: 160px; }
.language-choice__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #ff94bd;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}
.language-choice__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #f6eef7;
    cursor: pointer;
    font: inherit;
    font-size: 24px;
}
.language-choice__close:hover { background: rgba(255, 255, 255, .08); }
.language-choice__link:focus-visible,
.language-choice__close:focus-visible { outline: 2px solid #ff94bd; outline-offset: 2px; }
@media (max-width: 360px) {
    .language-choice { gap: 8px; padding-left: 10px; font-size: 12px; }
    .language-choice__message { max-width: 140px; }
}
