.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
  }

  .custom-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background-color: transparent;
  }

  .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    height: 0;
  }

  .video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
  }

  .custom-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 10000;
  }