/* إعدادات الفيديو */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  iframe {
    width: 170%;
    height: 170%;
    border: none;
  }
  
  .close-btn {
    background-color: red;
    padding: 150vw 1vh;
    font-size: 23px;
    margin-top: 100px;
    margin-left: 0px;
    color: #ffffff;
    border-radius: 10px;
  }

  .close-btn:hover {
    background-color: rgb(231, 140, 140);
  }