/* Overrides to disable decorative hero animations */
.hero::before { display: none !important; }
.hero-shapes { display: none !important; }
.hero-wave { display: none !important; }
.shape, .hero-dots { display: none !important; }
.floating { animation: none !important; transform: none !important; }
.shimmer { background: none !important; }

/* Play overlay over hero video */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.video-play-overlay .play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(20,118,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(20,118,255,0.45);
}
.video-play-overlay:hover { background: rgba(0,0,0,0.45); }
.video-play-overlay.hidden { display: none; }

/* Optional: reduce all animations if user prefers */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
