.yt-popup-wrapper {
    position: relative;
    display: inline-block;
}

.yt-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.yt-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.yt-play-button:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
}

.yt-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.yt-popup-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
}

.yt-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    max-width: 1080px;
    width: 100%;
    z-index: 10000;
    aspect-ratio: 16 / 9;
}

.yt-popup-iframe-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.yt-popup-wrapper {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.yt-popup-iframe-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;   
}

.yt-popup-iframe-container iframe {
    width: 100%;
    height: 100% !important;
    border: none;
}

.yt-popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    z-index: 50;
}