.video-lightbox-trigger {
  position: relative;
  cursor: none; /* Hide native cursor */
  display: block;
  width: 100%; /* changed from 100vw */
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000; /* optional placeholder color */
}

    .video-lightbox-trigger img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 0;
      box-shadow: none;
    }

    .video-lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: #000;
      z-index: 9999;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 2rem;
    }

    .video-lightbox-overlay.active {
      display: flex;
    }

    .video-lightbox-content {
      width: 75vw;
      max-height: 75vh;
      aspect-ratio: 16 / 9;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .custom-controls {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      padding: 1rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 10000;
    }

    .progress-container {
      width: 100%;
      height: 2px;
      background: #333;
      cursor: pointer;
      border-radius: 4px;
      overflow: hidden;
    }

    .progress-bar {
      height: 100%;
      width: 0%;
      background: #ffd300;
      transition: none;
      z-index: 10001;
    }

    .control-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 0.5rem 0;
    }

    .play-pause-btn {
      background: none;
      border: none;
      padding: 0.25rem 0.5rem;
      cursor: pointer;
      display: inline-block;
      border-radius: 4px;
      transition: background 0.3s ease;
    }

    .play-pause-btn img {
      height: 16px;
      width: auto;
      display: block;
      transition: filter 0.3s ease;
    }

    .play-pause-btn:hover {
      background: #fff;
    }

    .play-pause-btn:hover img {
      filter: invert(1);
    }

    .time-display {
      font-family: 'lores-15-narrow', monospace;
      font-size: 1rem;
      color: #fff;
      margin-left: auto;
      white-space: nowrap;
    }

    .lightbox-close {
      position: fixed;
      top: 1.5rem;
      right: 1.5rem;
      background: none;
      border: none;
      padding: 0.25rem 0.5rem;
      cursor: pointer;
      z-index: 10001;
      border-radius: 4px;
    }

    .lightbox-close img {
      display: block;
      width: 44px;
      height: auto;
      transition: filter 0.3s ease;
    }

    .lightbox-close:hover {
      background: #fff;
    }

    .lightbox-close:hover img {
      filter: invert(1);
    }

    /* ✨ Floating PLAY VIDEO cursor */
    .custom-video-cursor {
      position: fixed;
      pointer-events: none;
      font-size: 1.5rem; /* ~2x larger */
      font-family: 'lores-15-narrow', sans-serif;
      font-weight: 400;
      font-style: normal;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      text-transform: uppercase;
      z-index: 100000;
      opacity: 0;
      transform: translate(-50%, -50%);
      transition: opacity 0.2s ease, transform 0.1s ease;
      white-space: nowrap;
      mix-blend-mode: difference;
    }