/* Play Button on Image */
.video-thumb {
    /* position: relative; */
    display: inline-block;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #000;
    transform: translate(-35%, -50%);
}

/* Video Popup Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
}

.video-content {
    position: relative;
    width: 60%;
    max-width: 800px;
    margin: 180px auto;
}

.video-content video {
    width: 100%;
    border-radius: 10px;
}

/* Close Button */
.close-video {
    position: absolute;
    top: -25px;
    right: -25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
