    /* Стилі для popup */
    .popup {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1000;
    }
    
    /* Фон для закриття popup */
    .popup-background {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    /* Вміст popup */
    .popup-content {
        position: relative;
        max-width: 90%;
        max-height: 90vh;
    }
    
    /* Картинка popup */
    .popup-image {
        width: 100%;
        height: auto;
        max-width: 1200px;
        border-radius: 10px;
    }
    
    /* Закриття popup при натисканні за його межами */
    .popup-background:active ~ .popup {
        display: none;
    }
            