
body {
  font-family: 'Inter', system-ui, sans-serif !important;
}




.video-item {
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-item:hover video {
  transform: scale(1.05);
}

.play-icon {
  font-size: 3rem;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.video-item:hover .play-icon {
  opacity: 0;
}




/* Gradient glow background */
.gradient-glow {
  position: absolute;
  top: 0%; /* Position it above the content */
  right: 50%;
  transform: translateX(-50%); /* Center it horizontally */
  width: 300%; /* Make it wider to create the oval effect */
  height: 170%; /* Control the vertical size to make it more like a ball */
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6));
  opacity: 0.6;
  filter: blur(120px); /* Soft glow */
  z-index: 0; /* Ensure it's behind the header content */
  animation: glowRotate 22s linear infinite; /* Optional rotation effect */
}

/* Ensure header content is above glow */
.header-content {
  position: relative;
  z-index: 1;
}

/* Optional: animated rotation for a moving glow effect */
@keyframes glowRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}