/* ═══════════════════════════════════════════
   BCC Videos Page — Premium UI v3.0
═══════════════════════════════════════════ */

:root {
  --navy: #0d1230;
  --cyan: #00d4ff;
  --gold: #f5c518;
  --green: #2ecc71;
  --red: #e63946;
  --purple: #a855f7;
  --dark: #080c20;
  --darker: #04060f;
  --muted: #7a84ab;
  --border: rgba(255, 255, 255, .08);
  --card-bg: rgba(255, 255, 255, .035);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--darker);
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Animated Background ── */
.vg-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 10% 15%, rgba(0, 212, 255, .07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(168, 85, 247, .06) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(230, 57, 70, .04) 0%, transparent 60%),
    linear-gradient(175deg, #04060f 0%, #080c20 50%, #04060f 100%);
}

.vg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 212, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, .03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 72px 72px;
  }
}

/* Floating orbs */
.vg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.vg-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 212, 255, .04);
  top: -100px;
  left: -100px;
  animation: orbFloat1 18s ease-in-out infinite;
}

.vg-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, .05);
  bottom: -50px;
  right: -100px;
  animation: orbFloat2 22s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, -60px) scale(1.05);
  }
}

/* ── Advanced Background Effects ── */

/* 1. Radar Pulse */
.vg-radar {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.vg-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.2);
  animation: radarPulse 8s cubic-bezier(0.1, 0.5, 0.9, 0.1) infinite;
  opacity: 0;
  transform: scale(0.1);
}

.vg-radar-ring:nth-child(2) { animation-delay: 2.6s; }
.vg-radar-ring:nth-child(3) { animation-delay: 5.2s; }

@keyframes radarPulse {
  0% { transform: scale(0); opacity: 1; border-width: 2px; }
  100% { transform: scale(2.5); opacity: 0; border-width: 1px; }
}

/* 2. Floating Particles */
.vg-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.vg-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(0, 212, 255, 0.6);
  opacity: 0;
  animation: particleFloat var(--duration) linear infinite;
  animation-delay: var(--delay);
}

@keyframes particleFloat {
  0% { transform: translateY(110vh) scale(0); opacity: 0; }
  20% { transform: translateY(80vh) scale(1); opacity: var(--opacity); }
  80% { transform: translateY(20vh) scale(1); opacity: var(--opacity); }
  100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

/* 3. Floating Cricket Balls */
.vg-cricket-balls {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vg-cricket-ball {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="45" fill="none" stroke="rgba(230,57,70,0.15)" stroke-width="4"/><path d="M 20 50 Q 50 20 80 50" fill="none" stroke="rgba(230,57,70,0.15)" stroke-width="2" stroke-dasharray="4,4"/><path d="M 20 50 Q 50 80 80 50" fill="none" stroke="rgba(230,57,70,0.15)" stroke-width="2" stroke-dasharray="4,4"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.6;
  animation: ballTumble var(--b-duration) linear infinite;
  animation-delay: var(--b-delay);
}

@keyframes ballTumble {
  0% { transform: translate(-10vw, 110vh) rotate(0deg) scale(var(--b-scale)); }
  100% { transform: translate(110vw, -10vh) rotate(1080deg) scale(var(--b-scale)); }
}

/* 4. Subtle Pitch Lines Overlay */
.vg-pitch-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.01) 49.5%, rgba(255,255,255,0.01) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 20%, rgba(255,255,255,0.01) 20%, rgba(255,255,255,0.01) 20.5%, transparent 20.5%),
    linear-gradient(0deg, transparent 80%, rgba(255,255,255,0.01) 80%, rgba(255,255,255,0.01) 80.5%, transparent 80.5%);
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}

/* 5. Sweeping Stadium Spotlights */
.vg-spotlights {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.vg-spotlight {
  position: absolute;
  top: -10vh;
  width: 150vw;
  height: 150vh;
  background: conic-gradient(from 180deg at 50% 0%, transparent 45deg, rgba(0, 212, 255, 0.03) 90deg, rgba(255, 255, 255, 0.08) 180deg, rgba(0, 212, 255, 0.03) 270deg, transparent 315deg);
  transform-origin: 50% 0%;
  opacity: 0.8;
  mix-blend-mode: screen;
}

.vg-spotlight-left {
  left: -75vw;
  animation: sweepLeft 12s ease-in-out infinite alternate;
}

.vg-spotlight-right {
  right: -75vw;
  animation: sweepRight 15s ease-in-out infinite alternate;
}

@keyframes sweepLeft {
  0% { transform: rotate(15deg); }
  100% { transform: rotate(60deg); }
}

@keyframes sweepRight {
  0% { transform: rotate(-15deg); }
  100% { transform: rotate(-60deg); }
}

/* 6. Cinematic Edge Vignette */
.vg-vignette {
  position: fixed;
  inset: 0;
  z-index: 1; /* Sits above background effects but below content */
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 40%, rgba(4, 6, 15, 0.8) 100%);
}

/* ── Hero ── */
.vg-hero {
  position: relative;
  z-index: 1;
  padding: 160px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
}

/* Dynamic Stadium Spotlight Animation */
.vg-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(230, 57, 70, 0.1) 0%, transparent 40%);
  animation: stadiumSpotlight 15s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes stadiumSpotlight {
  0% { transform: translate(10%, 10%) scale(1); opacity: 0.5; }
  50% { transform: translate(-10%, 15%) scale(1.2); opacity: 0.8; }
  100% { transform: translate(-15%, -10%) scale(0.9); opacity: 0.4; }
}

.vg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #ff6b7a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.2), inset 0 0 10px rgba(230, 57, 70, 0.1);
  position: relative;
  overflow: hidden;
}

.vg-eyebrow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: eyebrowSweep 4s linear infinite;
}

@keyframes eyebrowSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}

.vg-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4757;
  box-shadow: 0 0 10px #ff4757;
  animation: dotPing 1.2s ease-in-out infinite;
}

@keyframes dotPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.8); opacity: 0.4; }
}

.vg-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(54px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff 20%, #00d4ff 50%, #ffffff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 6s linear infinite;
  text-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

@keyframes textShine {
  to { background-position: 200% center; }
}

.vg-hero h1 .accent {
  background: linear-gradient(135deg, #ff4757, #ff8c94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.vg-hero p {
  font-size: 16px;
  color: #a0aab5;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* 3D Glassmorphic Stats Strip */
.vg-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(15, 20, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  max-width: 580px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: perspective(1000px) rotateX(5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vg-stats:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.2);
}

.vg-stat {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  flex: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
}

.vg-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
}

.vg-stat:hover {
  background: rgba(0, 212, 255, 0.08);
}

.vg-stat:hover::after {
  width: 100%;
}

.vg-stat:last-child {
  border-right: none;
}

.vg-stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #00d4ff;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  margin-bottom: 4px;
}

.vg-stat-l {
  font-size: 11px;
  color: #8b99a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ── Cinematic Featured Theater ── */
.vg-featured-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

/* Ambient Theater Glow */
.vg-featured-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; height: 90%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, rgba(230, 57, 70, 0.05) 50%, transparent 80%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: theaterBreathe 8s ease-in-out infinite alternate;
}

@keyframes theaterBreathe {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.vg-featured-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffcc00;
  margin-bottom: 24px;
  background: rgba(255, 204, 0, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 204, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.15);
}

.vg-featured-label i {
  font-size: 12px;
  animation: starPulse 2s ease-in-out infinite;
  text-shadow: 0 0 10px #ffcc00;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

/* Unified Glassmorphic Container */
.vg-featured-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  background: rgba(15, 20, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
}

@media(max-width:960px) {
  .vg-featured-layout {
    grid-template-columns: 1fr;
  }
}

.vg-featured-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vg-featured-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vg-featured-info {
  padding: 30px 40px;
  background: linear-gradient(180deg, rgba(20,25,35,0.8), rgba(10,15,20,0.95));
}

.vg-featured-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.vg-featured-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #a0aab5;
  font-weight: 500;
}

.vg-featured-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.vg-featured-meta i {
  color: #00d4ff;
  font-size: 12px;
}

/* Playlist sidebar */
.vg-playlist {
  background: rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}

.vg-playlist-header {
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vg-playlist-header span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00d4ff;
  display: flex;
  align-items: center;
}

.vg-playlist-count {
  background: rgba(0, 212, 255, .15);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 10px;
  color: var(--cyan);
  font-weight: 700;
}

.vg-playlist-list {
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 212, 255, .2) transparent;
}

.vg-playlist-list::-webkit-scrollbar {
  width: 4px;
}

.vg-playlist-list::-webkit-scrollbar-track {
  background: transparent;
}

.vg-playlist-list::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, .2);
  border-radius: 4px;
}

.vg-pl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: background .2s;
}

.vg-pl-item:hover {
  background: rgba(0, 212, 255, .06);
}

.vg-pl-item.active {
  background: rgba(0, 212, 255, .1);
  border-left: 3px solid var(--cyan);
}

.vg-pl-thumb {
  width: 80px;
  min-width: 80px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.vg-pl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vg-pl-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .2s;
}

.vg-pl-item:hover .vg-pl-play,
.vg-pl-item.active .vg-pl-play {
  opacity: 1;
}

.vg-pl-play i {
  font-size: 14px;
  color: #fff;
}

.vg-pl-info {
  flex: 1;
  min-width: 0;
}

.vg-pl-title {
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.vg-pl-meta {
  font-size: 10px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vg-pl-meta i {
  font-size: 9px;
}

/* ── Search + Filter Row ── */
.vg-controls {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vg-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 11px 22px;
  flex: 1;
  min-width: 220px;
  max-width: 400px;
  transition: border-color .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}

.vg-search:focus-within {
  border-color: rgba(0, 212, 255, .4);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, .08);
}

.vg-search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  width: 100%;
}

.vg-search input::placeholder {
  color: var(--muted);
}

.vg-search i {
  color: var(--muted);
  font-size: 13px;
}

.vg-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.vg-filter-btn {
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--muted);
  transition: all .22s;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vg-filter-btn i {
  font-size: 11px;
}

.vg-filter-btn:hover,
.vg-filter-btn.active {
  background: rgba(0, 212, 255, .12);
  border-color: rgba(0, 212, 255, .4);
  color: var(--cyan);
  box-shadow: 0 4px 18px rgba(0, 212, 255, .15);
}

/* ── Grid Section ── */
.vg-section {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.vg-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.vg-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: #fff;
}

.vg-section-title span {
  color: var(--cyan);
}

.vg-result-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.vg-channel-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(230, 57, 70, .12);
  border: 1px solid rgba(230, 57, 70, .3);
  color: #ff6b7a;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 40px;
  transition: all .2s;
}

.vg-channel-link:hover {
  background: rgba(230, 57, 70, .22);
  border-color: rgba(230, 57, 70, .6);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, .2);
}

/* Grid */
.vg-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

/* Base for larger screens to allow spanning */
@media (min-width: 960px) {
  .vg-grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 28px;
  }
}

/* Video Card Base */
.vg-card {
  background: rgba(12, 12, 16, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  overflow: hidden;
  transition: all .5s cubic-bezier(.15, .85, .3, 1);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.vg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s;
}

/* Category-specific Neon Glows & Borders on Hover */
.vg-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(18, 18, 24, 0.65);
}

/* Gold Category tag card */
.vg-card-gold:hover {
  border-color: rgba(245, 197, 24, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 197, 24, 0.22);
}
/* Red Category tag card */
.vg-card-red:hover {
  border-color: rgba(230, 57, 70, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(230, 57, 70, 0.22);
}
/* Cyan Category tag card */
.vg-card-cyan:hover {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 212, 255, 0.22);
}
/* Purple Category tag card */
.vg-card-purple:hover {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(168, 85, 247, 0.22);
}
/* Green Category tag card */
.vg-card-green:hover {
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 35px rgba(46, 204, 113, 0.22);
}

/* Dynamic Editorial Grid Spanning (Desktop Only) */
@media (min-width: 960px) {
  /* Hero 2x2 Spanning Card (Item 1) - Premium Cinema Spotlight overlay cover */
  .featured-hero-card {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    height: 100% !important;
    min-height: 520px !important;
  }
  .featured-hero-card .vg-thumb {
    aspect-ratio: auto !important;
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    width: 100% !important;
    z-index: 1 !important;
  }
  .featured-hero-card .vg-thumb img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  /* Cinematic Vignette Shader Overlay */
  .featured-hero-card::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(10, 10, 14, 0.95) 0%, rgba(10, 10, 14, 0.35) 60%, transparent 100%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
    opacity: 1 !important;
    transition: opacity .3s !important;
  }
  
  .featured-hero-card:hover::after {
    opacity: 0.85 !important;
  }

  .featured-hero-card .vg-card-info {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 40px !important;
    z-index: 3 !important;
    background: none !important;
  }

  .featured-hero-card .vg-card-title {
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin-bottom: 14px !important;
    text-shadow: 0 4px 16px rgba(0,0,0,0.85);
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  
  .featured-hero-card .vg-card-tag {
    font-size: 11px !important;
    padding: 6px 14px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  
  .featured-hero-card .vg-card-meta {
    font-size: 13px !important;
  }

  /* Wide 2x1 Spanning Card (Items 5 & 6) */
  .wide-featured-card {
    grid-column: span 2 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    height: 240px !important;
    background: linear-gradient(135deg, rgba(16, 16, 22, 0.6) 0%, rgba(10, 10, 14, 0.45) 100%) !important;
  }
  .wide-featured-card .vg-thumb {
    width: 52% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    flex-shrink: 0 !important;
    position: relative !important;
  }
  /* Angled glass border dividing split */
  .wide-featured-card .vg-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.08), transparent);
    z-index: 2;
  }
  .wide-featured-card .vg-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .wide-featured-card .vg-card-info {
    width: 48% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 32px !important;
  }
  .wide-featured-card .vg-card-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
  }
}

/* Category Badges Styling */
.vg-card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.vg-card-tag.gold { background: rgba(245, 197, 24, 0.12); color: var(--gold); border: 1px solid rgba(245, 197, 24, 0.25); }
.vg-card-tag.red { background: rgba(230, 57, 70, 0.12); color: #ff6b7a; border: 1px solid rgba(230, 57, 70, 0.25); }
.vg-card-tag.cyan { background: rgba(0, 212, 255, 0.12); color: var(--cyan); border: 1px solid rgba(0, 212, 255, 0.25); }
.vg-card-tag.purple { background: rgba(168, 85, 247, 0.12); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.25); }
.vg-card-tag.green { background: rgba(46, 204, 113, 0.12); color: var(--green); border: 1px solid rgba(46, 204, 113, 0.25); }

/* Thumbnail */
.vg-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.vg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1), filter .3s;
}

.vg-card:hover .vg-thumb img {
  transform: scale(1.08);
  filter: brightness(.7);
}

/* Play overlay */
.vg-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background .4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
}

.vg-card:hover .vg-play-overlay {
  background: rgba(0, 0, 0, .35);
}

.vg-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(235, 235, 245, .92));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  padding-left: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .7), 0 0 0 6px rgba(255, 255, 255, .05);
  opacity: 0;
  transform: scale(.65);
  transition: opacity .28s, transform .22s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  will-change: transform;
}

/* concentric liquid ripple micro-animations */
.vg-play-btn::before,
.vg-play-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  opacity: 0;
  transition: all 0.4s ease-out;
  pointer-events: none;
}

.vg-card:hover .vg-play-btn {
  opacity: 1;
  transform: scale(1);
}

.vg-card:hover .vg-play-btn::before {
  animation: playRipple 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}
.vg-card:hover .vg-play-btn::after {
  animation: playRipple 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1) 1s;
}

@keyframes playRipple {
  0% { transform: scale(1); opacity: 1; border-color: rgba(0, 212, 255, 0.6); }
  50% { border-color: rgba(168, 85, 247, 0.6); }
  100% { transform: scale(1.6); opacity: 0; border-color: rgba(230, 57, 70, 0); }
}

/* Gradient overlay at bottom of thumb */
.vg-thumb-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}

.vg-card:hover .vg-thumb-gradient {
  opacity: 1;
}

/* New badge */
.vg-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--red), #ff6b7a);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, .5);
  z-index: 2;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 4px 14px rgba(230, 57, 70, .5);
  }

  50% {
    box-shadow: 0 4px 24px rgba(230, 57, 70, .8);
  }
}

/* Card info */
.vg-card-info {
  padding: 14px 16px 16px;
  position: relative;
  z-index: 2;
}

.vg-card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}

.vg-card:hover .vg-card-title {
  color: rgba(0, 212, 255, .9);
}

.vg-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}

.vg-card-meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vg-card-meta-left span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vg-card-meta-left i {
  font-size: 9px;
  color: var(--red);
}

.vg-card-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vg-card-views i {
  font-size: 9px;
  color: var(--cyan);
}

/* Skeleton */
.vg-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, .04) 25%, rgba(255, 255, 255, .09) 50%, rgba(255, 255, 255, .04) 75%);
  background-size: 200% 100%;
  animation: skelShimmer 1.5s infinite;
  border-radius: 18px;
}

@keyframes skelShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.vg-skel-card {
  height: 265px;
}

.vg-skel-card.large {
  grid-column: span 2;
}

/* Error state */
.vg-error {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 24px;
  color: var(--muted);
  font-size: 14px;
}

.vg-error i {
  font-size: 52px;
  color: var(--red);
  display: block;
  margin-bottom: 18px;
}

.vg-error a {
  color: var(--cyan);
  font-weight: 600;
}

/* No-results message */
.vg-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 24px;
}

.vg-no-results i {
  font-size: 40px;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}

.vg-no-results p {
  color: var(--muted);
  font-size: 14px;
}

/* ── Enhanced Modal ── */
.vg-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.vg-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.vg-modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  transform: scale(.91) translateY(28px);
  transition: transform .38s cubic-bezier(.34, 1.56, .64, 1);
}

.vg-modal.open .vg-modal-inner {
  transform: scale(1) translateY(0);
}

.vg-modal-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 212, 255, .15);
}

.vg-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.vg-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, transform .2s;
}

.vg-modal-close:hover {
  background: var(--red);
  transform: rotate(90deg);
}

/* Prev / Next nav buttons */
.vg-modal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.vg-modal-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all .2s;
}

.vg-modal-nav-btn:hover {
  background: rgba(0, 212, 255, .12);
  border-color: rgba(0, 212, 255, .4);
  color: var(--cyan);
}

.vg-modal-nav-btn:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}

.vg-modal-title {
  flex: 1;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
  max-width: 500px;
}

/* ── CTA Strip ── */
.vg-cta {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 212, 255, .07), rgba(168, 85, 247, .07));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 64px 24px;
  overflow: hidden;
}

.vg-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, .08), transparent 70%);
  pointer-events: none;
}

.vg-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vg-cta h2 span {
  color: var(--cyan);
}

.vg-cta p {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 26px;
  line-height: 1.75;
}

.vg-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 14px 30px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 28px rgba(0, 212, 255, .35);
}

.vg-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 212, 255, .5);
}

/* ── Scroll reveal ── */
.vg-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s, transform .65s;
}

.vg-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Load more button ── */
.vg-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 40px;
  transition: all .25s;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-decoration: none;
}

.vg-load-more-btn:hover {
  background: rgba(0, 212, 255, .1);
  border-color: rgba(0, 212, 255, .3);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media(max-width:768px) {
  .vg-hero {
    padding: 120px 16px 40px;
  }

  .vg-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vg-featured-wrap {
    margin-bottom: 36px;
  }

  .vg-section {
    padding: 0 16px 60px;
  }

  .vg-controls {
    padding: 0 16px 24px;
  }

  .vg-search {
    max-width: 100%;
  }

  .vg-modal-nav {
    flex-wrap: wrap;
  }

  .vg-modal-title {
    font-size: 14px;
  }

  .vg-playlist {
    max-height: 300px;
  }
}

@media(min-width:600px) and (max-width:900px) {
  .vg-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Live Indicator for Stats */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 5px;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  }

  70% {
    transform: scale(1.2);
    opacity: 0.8;
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

/* Card Interactive Buttons */
.vg-card-share-btn,
.vg-card-save-btn {
  position: absolute;
  top: 12px;
  z-index: 10;
  background: rgba(8, 12, 32, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s, color 0.2s;
}

.vg-card-share-btn {
  right: 12px;
}

.vg-card-save-btn {
  right: 54px;
}

.vg-card:hover .vg-card-share-btn,
.vg-card:hover .vg-card-save-btn {
  opacity: 1;
  transform: translateY(0);
}

.vg-card-share-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--darker);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

.vg-card-save-btn:hover,
.vg-card-save-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--darker);
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.3);
}

/* Dynamic Scanline Effect for Cards */
.vg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
}

.vg-card:hover::after {
  opacity: 0.15;
}



/* Empty Watch-Later State */
.vg-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 30px auto;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.vg-empty-state-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
  animation: bookmarkFloat 3s ease-in-out infinite;
}

@keyframes bookmarkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vg-empty-state-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 8px;
}

.vg-empty-state-desc {
  font-size: 13.5px;
  color: var(--muted);
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.6;
}

/* LIVE Pulse Tag next to section title */
.vg-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #ff6b7a;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  text-transform: uppercase;
  margin-left: 12px;
  vertical-align: middle;
}

.vg-live-pulse {
  width: 7px;
  height: 7px;
  background-color: #ff3344;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 10px #ff3344;
  animation: liveHeartbeat 1.6s infinite ease-in-out;
}

@keyframes liveHeartbeat {
  0%, 100% { transform: scale(1); box-shadow: 0 0 6px #ff3344; }
  50% { transform: scale(1.4); box-shadow: 0 0 14px #ff3344, 0 0 24px rgba(255, 51, 68, 0.4); }
}/* -- Mobile Optimizations for Hero & Theater Mode -- */
@media (max-width: 960px) {
  .vg-hero {
    padding: 120px 20px 60px;
  }
  .vg-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    transform: none !important; /* Disable 3D tilt on mobile */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
  }
  .vg-stat {
    border-right: 1px solid rgba(255,255,255,0.05) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px;
  }
  .vg-stat:nth-child(even) {
    border-right: none !important;
  }
  .vg-stat:nth-child(3), .vg-stat:nth-child(4) {
    border-bottom: none;
  }

  .vg-featured-wrap {
    padding: 0 16px;
    margin-bottom: 50px;
  }
  .vg-featured-layout {
    border-radius: 16px;
  }
  .vg-featured-info {
    padding: 20px;
  }
  .vg-playlist {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-height: 380px !important;
  }
}

/* ── Native Local HTML5 Video Player ── */
.vg-local-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
}

