.language-modal-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
}

.language-modal {
    top: 50%;
    left: 50%;
    width: 90%;
    z-index: 9999;
    padding: 40px;
    position: fixed;
    max-width: 540px;
    text-align: center;
    box-sizing: border-box;
    border-radius: 16px;
    background-color: #fff;
    transform: translate(-50%, -50%);
}

.language-modal__icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
}

.language-modal__icon img {
    height: auto;
    max-width: 60px;
    max-height: 60px;
}

.language-modal__title {
    margin: 0;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.language-modal__subtitle {
    color: #555;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 32px 0;
}

.language-modal__buttons {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.language-modal__link {
    display: flex;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 32px;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
    justify-content: space-between;
    transition: opacity 0.2s ease;
}

.language-modal__link:first-child {
    color: #fff;
    background-color: #FFA51C;
}

.language-modal__link:first-child:hover {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
}

.language-modal__link:last-child {
    color: #fff;
    background-color: #1a1a1a;
}

.language-modal__link:last-child:hover {
    color: #fff;
    opacity: 0.85;
    text-decoration: none;
}

.language-modal__arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.language-modal__arrow svg {
    width: 20px;
    height: 20px;
}

.language-modal__link:hover .language-modal__arrow {
    transform: translateX(5px);
}
