/* ---- Backstage paywall modal ---- */
.bs-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 4, 16, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.bs-overlay[hidden] { display: none; }

.bs-card {
  position: relative;
  display: inline-block;
  line-height: 0;
  animation: bs-pop 0.25s ease;
}
@keyframes bs-pop {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.bs-poster,
.bs-video {
  display: block;
  max-width: min(92vw, 520px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 14px;
}
.bs-poster[hidden],
.bs-video[hidden] {
  display: none;
}

.bs-hotspot {
  position: absolute;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
/* Positioned over the baked-in artwork buttons (percentages of the poster) */
.bs-unlock {
  left: 11%;
  top: 79.5%;
  width: 83%;
  height: 10.5%;
  border-radius: 40px;
}
.bs-unlock:active { transform: scale(0.985); }
.bs-notnow {
  left: 33%;
  top: 92%;
  width: 34%;
  height: 5.5%;
}

/* Temporary Backstage entry point (test trigger) — now below the swatches */
.backstage-row {
  display: flex;
  justify-content: center;
  margin: 0 0 8px;
}
.bs-trigger {
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #E94FE0;
  color: #F7C4FF;
  background: rgba(233, 79, 224, 0.12);
  transition: background 0.15s ease;
}
.bs-trigger:hover { background: rgba(233, 79, 224, 0.22); }
.bs-trigger:active { transform: scale(0.96); }
