.popup-video-container {
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  width:80%;
  max-width:400px;
  border-radius:20px;
  overflow:hidden;
  background:#beaebf4f;
  box-shadow:0 0 20px rgba(0,0,0,0.7);
  margin-bottom:10px;
}
.popup-video-container video {
  width:100%;
  height:auto;
  object-fit:contain;
}

/* دکمه × بالای ویدیو */
#closePopupAd {
  position:absolute;
  top:8px;
  right:8px;
  background:rgba(255,0,0,0.95);
  color:#fff;
  border:none;
  font-size:22px;
  padding:6px 10px;
  cursor:pointer;
  border-radius:50%;
  z-index:99999;
}

/* دکمه فارسی شبیه تصویر */
#closePopupText {
  text-align:center;
  font-size:16px;
  font-weight:bold;
  color:#fff;
  background-color:#e74c3c; /* قرمز */
  padding:10px 20px;
  border-radius:8px;
  cursor:pointer;
  width:fit-content;
  margin-top:8px;
  transition: all 0.2s ease;
}
#closePopupText:hover {
  background-color:#f20000;
  transform:scale(1.05);
}

/* واکنش‌گرایی فقط دسکتاپ */
@media (min-width:992px){
  .popup-video-container {
    max-width:480px; /* سایز دلخواه دسکتاپ */
  }
}
