/*
 * FilmParty Step 92
 * Keep non-VIP download dropdowns closed on first render.
 * Scoped to pages that contain download UI. No profile selectors.
 */

html.fp-step92-nonvip-download-closed,
html.fp-step92-nonvip-download-closed body {
  overflow-x: clip;
}

html.fp-step92-nonvip-download-closed details[data-fp-step92-download-details]:not([open]) > :not(summary) {
  display: none !important;
}

html.fp-step92-nonvip-download-closed details[data-fp-step92-download-details] > summary {
  position: relative;
}

html.fp-step92-nonvip-download-closed details[data-fp-step92-download-details] > summary::after {
  content: "VIP";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  margin-inline-start: 8px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .3px;
  color: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(135deg, rgba(251,191,36,.36), rgba(245,158,11,.18)),
    rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(245,158,11,.14);
}

html.fp-step92-nonvip-download-closed .fp-step92-closed-download-panel {
  display: none !important;
}

html.fp-step92-nonvip-download-closed .fp-step92-download-trigger-locked {
  isolation: isolate;
}

html.fp-step92-nonvip-download-closed .fp-step92-download-trigger-locked::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(251,191,36,.20), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  opacity: .88;
}

@supports not (overflow: clip) {
  html.fp-step92-nonvip-download-closed,
  html.fp-step92-nonvip-download-closed body {
    overflow-x: hidden;
  }
}
