<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.youtube-preview-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  overflow: hidden;
}

.youtube-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.youtube-embed {
  width: 100%;
  height: 100%;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.4s ease;
}

.preview-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.youtube-play-button {
  position: relative;
  z-index: 3;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.youtube-play-button img {
  width: 80px;
  height: 80px;
}

.youtube-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.youtube-lightbox.visible {
  opacity: 1;
}
.youtube-lightbox iframe {
  width: 90vw;
  height: 50vw;
  max-width: 960px;
  max-height: 540px;
}
.youtube-lightbox .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .youtube-lightbox iframe {
    width: 100vw;
    height: 100vh;
  }
}
</pre></body></html>