.Metro-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.Metro-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.Metro-modal-content {
  position: relative;
  background: #000;
  border-radius: 8px;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.Metro-close-button {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  padding: 5px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.Metro-close-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.Metro-video-container {
  position: relative;
  width: 560px;
  height: 315px;
  max-width: 90vw;
  max-height: 50.625vw; /* Mantiene aspect ratio 16:9 */
}

.Metro-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Responsive design */
@media (max-width: 600px) {
  .Metro-video-container {
    width: 90vw;
    height: 50.625vw;
  }
}
