/* 复刻站自定义补充样式（视频灯箱等，不影响主题原有样式） */

.site-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-video-lightbox__frame {
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
}

.site-video-lightbox__frame iframe {
  width: 100%;
  height: 100%;
}

.site-video-lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
