/* Lightbox moderno */
.pv-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.pv-modal {
  position: relative;
  background: #000;
  border-radius: 10px;
  max-width: 70%;
  display: flex;
  /* centra el vídeo dentro */
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pv-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-close:hover {
  background: rgba(244, 67, 54, 0.8);
}

#pv-player {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  /* mantiene proporción */
  border-radius: 6px;
}

/* resaltar videos que si están disponibles */
.pv-video-row{
  width:fit-content;
}
.pv-video-row.pv-open:hover{
  transform:scale(1.02);
}