.youtube-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: visible; /* Changed from hidden to ensure iframe renders */
  max-width: 100%;
  background: #000; /* Fallback background */
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* Ensure iframe is rendered */
}

/* Optional: Overlay to hide top bar if title persists */
.youtube-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px; /* Covers potential title bar */
  background: #000;
  z-index: 10;
  pointer-events: none;
}