/* youtube-popups-style.css */

.youtube-video img {
  cursor: pointer;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: clamp(200px, 80vw, 500px);
}

.video-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-frame {
  width: 80%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: white;
  background: black;
  padding: 5px;
  border: none;
}
