#youtube-player {
        filter: grayscale(100%);
      }

      .video-container-custom {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
      }

      .video-player-custom {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%);
        transition: filter 0.5s ease;
        /* Transition for smooth effect */
      }

      .controls-custom {
        position: absolute;
        bottom: 20px;
        left: 250px;
        z-index: 100;
        /* Ensure controls are above the video */
      }

      .button-custom {
        background-color: #292929;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        margin-right: 10px;
        font-size: 16px;
      }

      .button-custom:hover {
        background-color: #000;
      }

      .button-custom i {
        margin-right: 5px;
      }