/* Modal container */
  .video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  /* Content box */
  .video-modal-content {
    position: relative;
    width: 95%;
    max-width: 800px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
  }

  /* Close button */
  .video-close-btn {
    position: absolute;
    top: 10px; right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
  }

    /* Close button */
  .video-launch-btn {
    color: white;
    background-color: #4CAF50;
    font-size: 20px;
  }

  /* Scoped iframe style – ONLY affects video modal */
  .video-modal iframe.video-iframe {
    width: 100%;
    height: 450px;
    border: none;
  }