/* --- МОДАЛ АСОСИЙ СТИЛЛАРИ --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    
    /* Chrome ва бошқалар учун марказлаш */
    align-items: center;
    justify-content: center;

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

/* --- ЁПИШ ТУГМАСИ (X) - ЖИРНИЙ ВА ҚОРА --- */
.close-modal {
    position: absolute;
    top: 15px; 
    right: 20px;
    font-size: 35px; /* Бироз каттароқ */
    font-weight: 900; /* Энг жирний вариант */
    cursor: pointer;
    color: #000000 !important; /* Тўқ қора ранг */
    z-index: 101;
    opacity: 1; /* Шаффофликни олиб ташладик, доим ёрқин туради */
    line-height: 1;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.1); /* Сичқонча борганда озгина катталашади */
}

/* --- МОБИЛ ВЕРСИЯ (80% БАЛАНДЛИК) --- */
@media (max-width: 900px) {
    .modal-content {
        width: 85% !important; /* Мобилда кенглиги */
        height: 80% !important; /* Сиз сўраган баландлик */
        border-radius: 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .modal-grid {
        display: block;
        height: 100%;
    }

    .modal-visual {
        height: 35%; /* Расм баландлиги */
        width: 100%;
    }

    .modal-details {
        padding: 25px 20px;
    }

    #modalTitle { font-size: 1.6rem; }
}