.language-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.language-content {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: fadeIn 0.5s;
}
.language-content h2 {
    margin-bottom: 25px;
    font-size: 22px;
    color: #333;
}
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.lang-btn {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background: #6200ea;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.lang-btn:hover {
    background: #3700b3;
    transform: translateY(-2px);
}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}