.custom-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintain aspect ratio */
    background: black;
    overflow: hidden;
  }
  
  .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
  }
  
  .custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start; /* Align horizontally to the left */
    align-items: flex-end; /* Align vertically to the bottom */
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 3;
    padding: 10px; /* Add padding for spacing */
  }
  
  .play-button {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 4;
    padding-left: 15px;
  }
  .play-button:hover, .play-button:focus {
    outline: none;
    background-color: #0000;
  }
  .play-button img {
    width: 50px; /* Adjust play button size */
    height: auto;
  }
  
  .play-button img:hover {
    opacity: 0.8; /* Optional hover effect */
    filter: invert(1);
  }
  
  @media (max-width: 768px) {
    .play-button img {
      width: 40px; /* Smaller play button for mobile */
    }
  }