/* ===== RELEASES SECTION ===== */
.video-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(29, 185, 84, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.1;
  background: linear-gradient(135deg, #f0f0f0 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-highlight {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  color: #cccccc;
  margin: 0 0 60px 0;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(29, 185, 84, 0.3);
}

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-wrapper:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-overlay iconify-icon {
  font-size: 3rem;
  color: #ffffff;
  margin-left: 4px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
}

.video-wrapper:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-wrapper:hover .video-thumb img {
  transform: scale(1.05);
  filter: blur(2px);
}

/* See More Button */
.see-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.btn-showcase {
  position: relative !important;
  display: inline-flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 28px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 100px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: 0.5px !important;
  backdrop-filter: blur(25px) saturate(1.3) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  opacity: 1 !important;
  animation: none !important;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    0 3px 10px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
}

.btn-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  animation: shimmerPass 8s ease-in-out infinite;
}

.btn-showcase:hover::before {
  left: 100%;
}

.btn-showcase:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 5px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

@keyframes shimmerPass {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

/* Animations */
.animate-fadein-btn {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 15px;
  }
  
  .video-section {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
  }
  
  .video-section {
    padding: 80px 0;
  }
  
  .video-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .hub-highlight {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 40px;
  }
  
  .play-overlay iconify-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .video-section {
    padding: 60px 0;
  }
  
  .play-overlay iconify-icon {
    font-size: 2rem;
  }
  
  .btn-showcase {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
} 