  
    .video-wrapper {
      width: 100%;
      aspect-ratio: 16 / 9;
      position: relative;
      cursor: none;
    }


    video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(0, 0, 0, 0.4);
      transition: opacity 0.3s ease;
      cursor: pointer;
    }

    .overlay:hover {
      opacity: 0.8;
    }

    .play-button {
      font-size: 2.5rem;
      font-weight: normal;
      color: #1CE1FF;
      pointer-events: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .play-button.triangle::before {
      content: "";
      display: inline-block;
      width: 0;
      height: 0;
      border-left: 40px solid #1CE1FF;
      border-top: 25px solid transparent;
      border-bottom: 25px solid transparent;
    }

    .text-labels {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      display: flex;
      justify-content: space-between;
      color: white;
      font-size: 1rem;
      font-weight: 100;
      mix-blend-mode: difference;
    }
    
    .custom-cursor {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #1CE1FF;
      font-size: 2.5rem;
      font-weight: normal;
      pointer-events: none;
      z-index: 10;
      display: block;
      mix-blend-mode: difference;
    }

.video-wrapper .overlay {
  cursor: url('../Assets/pointer.png'), auto !important;
}