
/* 🎬 Video Modal */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5,5,5,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#overlay-content {
  width: 90vw;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#overlay-video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

.overlay-label {
  font-weight: bold;
  font-size: 1.9rem;
  color: white;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin: 30px 0 0px;
  margin-bottom: 0px;
  animation: titleFade 1s ease forwards;
  align-self: flex-start;
}

