.LR7-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

.LR7-modal-content {
  position: relative;
  padding: 10px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.LR7-modal-content video {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  border-radius: 8px;
  z-index: 1;
  position: relative;
  display: block;
}

.LR7-close-btn {
  position: fixed;
  top: 10px;
  right: 14px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10; /* ВАЖНО: выше видео */
  background: rgba(0, 0, 0, 0.4); /* Опционально — фон для видимости */
  padding: 4px 10px;
  border-radius: 6px;
}

  .LR7-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
  }