/* web/assets/css/component/youtube-modal.css */
.video-thumb {
    width: 100%;
    display: block;
    border-radius: 8px;
    transform: translate(0, -13%) scale(1.15);
    aspect-ratio: auto;
}

.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

#videoPlayerContainer {
    width: 100%;
    height: 100%;
}

#videoPlayerContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
}