.iframe-wrapper {
  position: relative;
  display: inline-block; /* oder block, je nach Layout */
}

.iframe-overlay {
  position: absolute;
  inset: 0;
  background: #1a1a2e;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.iframe-overlay:hover {
  background: #16213e;
}

.iframe-overlay__icon {
  font-size: 2.5rem;
  color: #fff;
  opacity: 0.6;
}

.iframe-overlay__text {
  color: #fff;
  font-family: sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
  padding: 0 1rem;
}

.iframe-overlay__btn {
  background: #e94560;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: sans-serif;
}

.iframe-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}