/* Modal Background */
.ylp-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #a3238e;
    background-color: rgba(163, 35, 142, 0.9);
}

/* Modal Content */
.ylp-modal-content {
    position: relative;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 900px;
}

/* Close Button */
.ylp-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: -30px;
    top: -30px;
    z-index: 100000;
}

.ylp-close:hover,
.ylp-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Video Container for Responsive Aspect Ratio */
.ylp-video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.ylp-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Adjustments */
@media screen and (max-width: 600px) {
    .ylp-modal-content {
        width: 95%;
        margin: 20% auto;
    }

    .ylp-close {
        right: 0;
        top: -40px;
    }
}