.swiper {
      width: 100%;
      padding: 20px;
    }

    .swiper-slide {
      width:auto;
      height: 200px;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    }

    .swiper-slide img,
    .swiper-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: bold;
      
    }
    


.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}
.video-modal.active {
    display: flex;
}
.video-modal .modal-content {
    position: relative;
    background: #000;
    padding: 1em;
    max-width: 90%;
    max-height: 90%;
}
.video-modal video {
    width: 100%;
    height: auto;
}
.close-modal {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
	  z-index: 999999;
}
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.5);
    
    border-radius: 50%;
}
.video-thumb {
    position: relative;
    cursor: pointer;
	  width:300px;
}