.video-facade {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(15, 23, 42, 0.12));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.video-facade-btn {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #111;
  color: inherit;
}

.video-facade-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-facade-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.25rem;
  height: 4.25rem;
  margin: -2.125rem 0 0 -2.125rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.video-facade-play::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  margin: -0.55rem 0 0 -0.25rem;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent #fff;
}

.video-facade-btn:hover .video-facade-play,
.video-facade-btn:focus-visible .video-facade-play {
  transform: scale(1.06);
  background: rgba(10, 10, 10, 0.85);
}

.video-facade-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.7);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.video-facade-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-facade-fallback {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  margin: 0;
  z-index: 2;
}

.video-facade-fallback a {
  color: #f8fafc;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.78rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.video-facade[data-active="1"] .video-facade-fallback {
  display: none;
}

@media (max-width: 640px) {
  .video-facade {
    border-radius: 10px;
  }
  .video-facade-play {
    width: 3.5rem;
    height: 3.5rem;
    margin: -1.75rem 0 0 -1.75rem;
  }
}
