/* Video Lightbox Styles */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10000;
  max-width: 1200px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -5px;
right: -5px;
  background: rgba(0, 0, 0, 0.5);
  color: #e2b43a;
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-video-wrapper {
  position: relative;
  background: #000;
}

.lightbox-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 70vh;
  margin-bottom: 0px;
}

.lightbox-info {
  padding: 30px;
  background: linear-gradient(135deg, rgb(1 0 2 / 80%) 0%, rgb(81 76 110 / 70%) 100%) !important;
}

.lightbox-category {
  color: #e2b43a;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

.lightbox-title {
    color: white;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0px;
    line-height: 1.3;
    text-align: center;
}

.lightbox-duration {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.lightbox-duration i {
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-close {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    font-size: 25px;
  }
  
  .lightbox-info {
    padding: 20px;
  }
  
  .lightbox-title {
    font-size: 20px;
  }
  
  .lightbox-video-wrapper video {
    max-height: 50vh;
  }
}


.video-column {
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-column:hover {
  box-shadow: 0 0 10px rgba(226, 180, 58, 0.4), 
              0 0 20px rgba(226, 180, 58, 0.2);
  transform: translateY(-3px); /* Optional: subtle lift effect */
}