#play>div {
  background: no-repeat center / 60px url("../images/voice.svg") rgba(0, 207, 47, 0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.hide {
  display: none;
}

body.noscroll {
  overflow: hidden;
}

video {
  max-width: 100%;
  width: 100%;
}

/* чёрная подложка (фолбэк для псевдо-фуллскрина) */
.global-video-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9998;
  display: none;
}

#play h4 {
  margin: 0;
  padding: 0;
}

#container_video {
  position: relative;
  z-index: 2;
  display: flex;
}

/* псевдо-фуллскрин для контейнера (когда нет/не дали нативный FS) */
#container_video.fs {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
}

#container_video.fs #video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  height: 150px;
  display: none;
  pointer-events: auto;
}

.play-overlay>div {
  position: relative;
  background: rgba(255, 0, 0, 0.75);
  padding: 8px 20px;
  margin: 0 auto;
  width: 30%;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .play-overlay>div {
    width: 80%;
  }
}

.close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 10000;
  display: none;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 16px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}