/* ===== VIDEO ITEMS ===== */

.gallery-item.video-item {
  cursor: pointer;
}

/* Play icon overlay on grid videos */
.video-play-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-item.video-item:hover .video-play-icon {
  transform: scale(1.15);
  background: rgba(0, 210, 252, 0.75);
}

.video-play-icon svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* optical centering for play triangle */
}

/* ===== LIGHTBOX VIDEO ===== */

#lightbox-video {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  outline: none;
  background: #000;
  display: none;
  opacity: 1;
}

/* Quality hint badge */
.quality-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent-color);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  backdrop-filter: blur(6px);
  pointer-events: none;
  white-space: nowrap;
}
