/* Look "Tailwind-like" usando solo CSS + Bootstrap */

#video_gallery-1 {
  background: linear-gradient(rgba(123, 39, 216, 0.82) 4%, rgba(86, 58, 250, 0.92) 50%);
  position: relative;
  overflow: hidden;
}

/* Glow suave decorativo */

#video_gallery-1 .bg-orb {
  position: absolute;
  inset: auto auto -220px -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%);
  filter: blur(2px);
  pointer-events: none;
}

#video_gallery-1 .bg-orb.orb-2 {
  inset: -240px -240px auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%);
}

/* Card premium */

.video-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Thumbnail */

.video-thumb {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
  filter: saturate(1.05);
}

.video-card:hover .video-thumb img {
  transform: scale(1.08);
  filter: saturate(1.15) contrast(1.05);
}

/* Overlay + play */

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.10) 55%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.play-pill {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.play-pill:hover {
  transform: scale(1.03);
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

.video-meta {
  color: rgba(255, 255, 255, 0.86);
}

.video-kicker {
  color: rgba(255, 255, 255, 0.72);
}

/* Modal video */

.video-modal .modal-content {
  background: rgba(15, 12, 30, 0.92);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

