/* Vimeo popup styles */
#vimeo-popup.fade-in {
  animation: fadeInPopup 0.4s ease forwards;
}
#vimeo-popup.fade-out {
  animation: fadeOutPopup 0.4s ease forwards;
}
@keyframes fadeInPopup {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutPopup {
  from { opacity: 1; }
  to { opacity: 0; }
}
#vimeo-popup {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
}
#vimeo-popup .overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999998;
}
.vimeo-container {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  z-index: 999999;
}
.vimeo-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.vimeo-container .close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000000;
}