.custom-video {
  position: relative;
  display: block;
}

.custom-video img {
  width: 100%;
}

.custom-video .custom-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

/* triangle icon */
.custom-video .custom-play:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

/* Overlay */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;                      /* 🔥 better than left/top/width/height */
  background: rgba(0,0,0,0.85);

  display: flex;                 /* 🔥 ye hona chahiye */
  justify-content: center;
  align-items: center;
}

/* hide initially */
.video-modal.hide {
  display: none;
}

/* Center box */
.video-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  animation: zoomIn 0.3s ease;
}

/* Video */
.video-content video {
  width: 100%;
  height: auto;
  display: block;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;        /* 🔥 yaha change */
  right: 15px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 99999;   /* 🔥 ensure upar rahe */

  background: rgba(0,0,0,0.6);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Hover effect */
.close-btn:hover {
  color: #ff0000;
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .video-content {
    width: 95%;
  }

  .close-btn {
    top: -35px;
    font-size: 28px;
  }
}