/* Video Thumbnail Styles */
.video-thumbnail {
    cursor: pointer;
}

/* Play Button Styles */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0.8;
}

/* Video Lightbox Styles */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
}

.video-lightbox-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
}

/* Video Element Styles */
.video-lightbox video {
    width: 100%;
}

/* Close Button Styles */
.video-lightbox-close {
    position: absolute;
    top: -30px;
    right: -30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
