.youtube-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.youtube-video-modal-content {
    position: relative;
    width: 80%;
    max-width: 700px;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.youtube-video-modal-content iframe {
    width: 100%;
    height: 315px;
    border: none;
}

.youtube-video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.youtube-video-modal-close:hover {
    color: #f00;
}
