.language-selector-inline {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 1200;
    display: flex;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.language-selector-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    color: #1e293b;
    transition: background 160ms ease, color 160ms ease, transform 80ms ease, opacity 160ms ease;
}

.language-selector-inline-link:hover {
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    transform: translateY(-1px);
}

.language-selector-inline-link.active {
    background: #6366f1;
    color: #ffffff;
}

@media (max-width: 800px) {
    .language-selector-inline {
        top: 12px;
        right: 12px;
        padding: 8px 8px;
    }

    .language-selector-inline-link {
        width: 38px;
    }
}

