
/* Force video player iframe to fill its theater container */
.aspect-video iframe,
.aspect-video iframe * {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
}

/* BangHerPuss brand overrides */
.bhp-modal {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.bhp-modal.active { display: flex; }
.bhp-modal-box {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  width: 100%; max-width: 420px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(255,105,180,.15);
}
#bhp-toast {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 60;
  background: #111; border: 1px solid #FF69B4; color: #fff;
  padding: .75rem 1rem; border-radius: .5rem; font-weight: 700;
  transform: translateY(150%); transition: transform .3s ease;
}
#bhp-toast.show { transform: translateY(0); }
