/* Video Modal Styles */
.video-modal {
   position: fixed;
   z-index: 9999;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.9);
   display: flex;
   justify-content: center;
   align-items: center;
}

.video-modal-content {
   position: relative;
   max-width: 90%;
   max-height: 90%;
   background: #000;
   border-radius: 10px;
   overflow: hidden;
}

.video-close {
   position: absolute;
   top: -3px;
   right: 0px;
   color: #fff;
   font-size: 35px;
   font-weight: bold;
   cursor: pointer;
   z-index: 10000;
   background: rgba(0, 0, 0, 0.5);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.video-close:hover {
   background: rgba(0, 0, 0, 0.8);
}

#videoPlayer {
   display: block;
   max-width: 100%;
   max-height: 80vh;
}

@media (max-width: 768px) {
   .video-modal-content {
      max-width: 95%;
      max-height: 95%;
   }
   
   .video-close {
      font-size: 25px;
      width: 30px;
      height: 30px;
   }
}
