.home-banner img {
  height: auto;
  max-width: 100%;
}

.premium-badge {
  background: linear-gradient(135deg, #00eaff, #3b82f6, #7c3aed);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
  position: relative;
  z-index: 2;
}

.premium-glow {
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #22d3ee, #6366f1, #a855f7);
  filter: blur(8px);
  opacity: 0.75;
  z-index: 1;
  animation: premium-pulse 2.5s ease-in-out infinite;
}

@keyframes premium-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Aspect ratio for vertical videos (9:16) */
.ratio-9x16 {
  --bs-aspect-ratio: 177.78%;
}
