/* Play icon (her görselin sağ altı) */
.bz-play-icon{
  position:absolute;
  right:12px;
  bottom:12px;
  width:44px;
  height:44px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  z-index:9999;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bz-play-icon:before{
  content:"";
  width:0;height:0;
  border-left:14px solid #fff;
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
  margin-left:3px;
}

/* Modal */
.bz-video-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:999999;
}
.bz-video-modal.is-open{ display:block; }

.bz-video-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

.bz-video-dialog{
  position:relative;
  max-width:980px;
  width:calc(100% - 32px);
  margin:5vh auto 0 auto;
  background:#000;
  border-radius:14px;
  overflow:hidden;
  z-index:2;
}

.bz-video-close{
  position:absolute;
  right:10px;
  top:8px;
  z-index:3;
  width:40px;
  height:40px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:26px;
  line-height:40px;
  cursor:pointer;
}

.bz-video-frame{
  width:100%;
}

/* iframe responsive */
.bz-video-embed{
  position:relative;
  padding-bottom:56.25%;
  height:0;
  overflow:hidden;
}
.bz-video-embed iframe{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
}

.bz-video-frame video{
  width:100%;
  height:auto;
  display:block;
}

/* Modal açıkken body scroll kapat */
body.bz-modal-open{ overflow:hidden; }

.bz-play-icon{
  pointer-events:auto;
}

.bz-play-icon *{
  pointer-events:none;
}
/* Video açılırken görsel tıklanamaz */
.bz-disable-image-click {
  pointer-events: none !important;
}

