.video-thumb-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumb-wrapper:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.35);
}
.play-button-circle {
    width: 65px;
    height: 65px;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.play-triangle {
    color: #ffffff;
    font-size: 24px;
    margin-left: 6px;
    line-height: 1;
}
.video-thumb-wrapper:hover .play-button-circle {
    transform: scale(1.12);
    background: #ff0000; 
    border-color: #ff0000;
}
.custom-video-popup {
	position: fixed;
	z-index: 999999 !important;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-popup-content {
	width: 90%;
	max-width: 900px;
	box-shadow: 0 0 20px rgba(0,0,0,0.6);
}
.custom-close-x {
	position: absolute;
	top: 20px;
	right: 30px;
	color: #ffffff;
	font-size: 60px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	line-height: 1;
}
.custom-close-x:hover {
	color: #ff0000;
}
