.mov-quiz-runtime,
.mov-quiz-runtime * {
  box-sizing: border-box;
}

html.mov-quiz-document,
html.mov-quiz-document body,
html:has(body.mov-quiz-standalone),
body.mov-quiz-standalone {
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 100%;
  background: #f7f7fc;
  overflow: hidden;
}

body.mov-quiz-standalone .mov-quiz-standalone-main {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #f7f7fc;
  overflow: hidden;
}

.mov-quiz-runtime {
  --mov-primary: #6d3df5;
  --mov-primary-dark: #4c1dca;
  --mov-secondary: #15b8d1;
  --mov-global-gradient: linear-gradient(135deg, #6d3df5, #15b8d1);
  --mov-bg: #f7f7fc;
  --mov-surface: #fff;
  --mov-title: #171329;
  --mov-body: #554f68;
  --mov-answer-text: #231d38;
  --mov-button-text: #fff;
  --mov-muted: #777188;
  --mov-border: #e5e1f0;
  --mov-success: #13a873;
  --mov-progress-color: #6d3df5;
  --mov-progress-track: #e5e1f0;
  --mov-content-width: 520px;
  --mov-heading-font: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mov-body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mov-card-radius: 22px;
  --mov-button-radius: 16px;
  --mov-viewport-height: 100dvh;
  width: 100%;
  min-width: 0;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  height: var(--mov-viewport-height, 100dvh);
  min-height: var(--mov-viewport-height, 100dvh);
  max-height: var(--mov-viewport-height, 100dvh);
  color: var(--mov-body);
  background: var(--mov-stage-bg, var(--mov-bg));
  font-family: var(--mov-body-font);
  font-size: 17px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.mov-quiz-boot,
.mov-empty-state {
  display: grid;
  place-items: center;
  width: min(100%, var(--mov-content-width));
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 28px;
  color: var(--mov-muted);
  background: var(--mov-bg);
  text-align: center;
}

.mov-quiz-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  width: min(100%, var(--mov-content-width));
  height: 100%;
  min-height: 0;
  max-height: 100%;
  margin: 0 auto;
  color: var(--mov-body);
  background-color: var(--mov-stage-bg, var(--mov-bg));
  background-image: var(--mov-stage-image, none);
  background-position: center;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable both-edges;
  -webkit-overflow-scrolling: touch;
}

.mov-quiz-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, color-mix(in srgb, var(--mov-bg) 95%, transparent), color-mix(in srgb, var(--mov-bg) 88%, transparent));
  pointer-events: none;
}

.mov-stage-ambient {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: 50%;
  width: 460px;
  height: 360px;
  border-radius: 50%;
  background: var(--mov-global-gradient);
  filter: blur(110px);
  opacity: .12;
  transform: translateX(-50%);
  pointer-events: none;
}

.mov-quiz-header {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: 100%;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 18px 0;
}

.mov-header-row {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 54px;
}

.mov-back {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--mov-border) 80%, transparent);
  border-radius: 14px;
  color: var(--mov-title);
  background: color-mix(in srgb, var(--mov-surface) 80%, transparent);
  box-shadow: 0 6px 20px rgba(23, 19, 41, .06);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.mov-back svg {
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
}

.mov-back:hover,
.mov-back:focus-visible {
  border-color: var(--mov-primary);
  background: var(--mov-surface);
  outline: none;
  transform: translateX(-2px);
}

.mov-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 50px;
  padding: 0 10px;
}

.mov-brand img {
  display: block;
  width: auto;
  max-width: 142px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.mov-brand-text {
  color: var(--mov-title);
  font-family: var(--mov-heading-font);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1;
  text-align: center;
}

.mov-step-label {
  color: var(--mov-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
  text-align: right;
}

.mov-progress {
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--mov-progress-track, var(--mov-border));
  overflow: hidden;
}

.mov-progress > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--mov-progress-color, var(--mov-primary));
  box-shadow: 0 0 18px color-mix(in srgb, var(--mov-progress-color, var(--mov-primary)) 48%, transparent);
  transition: width .45s cubic-bezier(.2, .8, .2, 1);
}

.mov-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 0 auto;
  min-height: 0;
  align-items: stretch;
  width: 100%;
}

.mov-stage-inner {
  width: 100%;
  min-width: 0;
  margin: auto 0;
  padding: clamp(38px, 7vh, 82px) var(--mov-stage-padding-x, 20px) 36px;
}

.mov-layout-scroll .mov-stage-inner,
.mov-stage-break .mov-stage-inner,
.mov-stage-result .mov-stage-inner,
.mov-stage-offer .mov-stage-inner {
  margin: 0;
  padding-top: 46px;
}

.mov-content-vertical-top .mov-stage-inner {
  margin: 0 0 auto;
}

.mov-content-vertical-center .mov-stage-inner {
  margin: auto 0;
}

.mov-content-vertical-bottom .mov-stage-inner {
  margin: auto 0 0;
}

.mov-stage-heading {
  width: 100%;
  min-width: 0;
}

.mov-quiz-runtime .mov-stage-title {
  width: min(100%, var(--mov-stage-title-width, 100%));
  max-width: none;
  margin: 0 auto var(--mov-stage-title-gap, 14px);
  color: var(--mov-stage-title-color, var(--mov-title));
  font-family: var(--mov-heading-font);
  font-size: var(--mov-stage-title-size, clamp(30px, 7vw, 39px)) !important;
  font-weight: 820;
  letter-spacing: -.042em;
  line-height: var(--mov-stage-title-line-height, 1.12);
  text-align: center;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.mov-stage-kicker {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 10px;
  color: var(--mov-primary-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .11em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.mov-stage-title:focus {
  outline: none;
}

.mov-quiz-runtime .mov-stage-description {
  width: min(100%, var(--mov-stage-text-width, 94%));
  max-width: none;
  margin: 0 auto var(--mov-stage-text-gap, 24px);
  color: var(--mov-stage-text-color, var(--mov-body));
  font-size: var(--mov-stage-text-size, clamp(16px, 4.2vw, 19px)) !important;
  line-height: var(--mov-stage-text-line-height, 1.55);
  text-align: center;
  text-wrap: pretty;
}

.mov-stage-description p,
.mov-stage-description ul,
.mov-stage-description ol {
  margin: 0;
}

.mov-quiz-runtime .mov-stage-description p,
.mov-quiz-runtime .mov-stage-description li,
.mov-quiz-runtime .mov-stage-description span,
.mov-quiz-runtime .mov-stage-description small,
.mov-quiz-runtime .mov-stage-description strong,
.mov-quiz-runtime .mov-stage-description em {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.mov-stage-description p:not(:last-child),
.mov-stage-description ul:not(:last-child),
.mov-stage-description ol:not(:last-child) {
  margin-bottom: var(--mov-stage-paragraph-gap, 14px);
}

.mov-inline-editable {
  border-radius: 8px;
  cursor: text;
  transition: background .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.mov-inline-editable:hover {
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--mov-primary) 45%, transparent), 0 0 0 6px color-mix(in srgb, var(--mov-primary) 7%, transparent);
}

.mov-inline-editable:focus {
  background: color-mix(in srgb, var(--mov-surface) 76%, transparent);
  box-shadow: 0 0 0 2px var(--mov-primary), 0 0 0 7px color-mix(in srgb, var(--mov-primary) 11%, transparent);
  outline: none;
}

.mov-inline-editable[data-mov-empty="true"] {
  opacity: .58;
}

.mov-title-position-left .mov-stage-title,
.mov-title-position-left .mov-stage-kicker {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.mov-title-position-center .mov-stage-title,
.mov-title-position-center .mov-stage-kicker {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mov-title-position-right .mov-stage-title,
.mov-title-position-right .mov-stage-kicker {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.mov-text-position-left .mov-stage-description,
.mov-text-position-left .mov-rich-text,
.mov-text-position-left .mov-loading-message {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.mov-text-position-center .mov-stage-description,
.mov-text-position-center .mov-rich-text,
.mov-text-position-center .mov-loading-message {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mov-text-position-right .mov-stage-description,
.mov-text-position-right .mov-rich-text,
.mov-text-position-right .mov-loading-message {
  margin-right: 0;
  margin-left: auto;
  text-align: right;
}

.mov-answers {
  display: grid;
  width: 100%;
  gap: 12px;
  margin-top: 27px;
}

.mov-answer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 68px;
  padding: 15px 58px 15px 18px;
  border: 1px solid var(--mov-border);
  border-radius: var(--mov-card-radius);
  color: var(--mov-answer-text);
  background: color-mix(in srgb, var(--mov-surface) 94%, transparent);
  box-shadow: 0 8px 26px rgba(23, 19, 41, .055);
  font: inherit;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.34;
  text-align: left;
  cursor: pointer;
  appearance: none;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background .2s ease, transform .2s cubic-bezier(.2, .8, .2, 1), box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mov-answer:hover {
  border-color: color-mix(in srgb, var(--mov-primary) 64%, var(--mov-border));
  box-shadow: 0 13px 34px rgba(23, 19, 41, .09);
  transform: translateY(-2px);
}

.mov-answer:active {
  transform: scale(.987);
}

.mov-answer:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mov-primary) 28%, transparent);
  outline-offset: 2px;
}

.mov-answer.is-selected {
  border-color: var(--mov-primary);
  background: color-mix(in srgb, var(--mov-surface) 86%, var(--mov-primary) 14%);
  box-shadow: 0 10px 32px color-mix(in srgb, var(--mov-primary) 16%, transparent), inset 0 0 0 1px color-mix(in srgb, var(--mov-primary) 24%, transparent);
}

.mov-answer-label {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mov-answer-arrow,
.mov-checkbox {
  position: absolute;
  top: 50%;
  right: 16px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--mov-primary);
  background: color-mix(in srgb, var(--mov-primary) 9%, transparent);
  font-size: 17px;
  font-weight: 800;
  transform: translateY(-50%);
}

.mov-checkbox {
  border: 1.5px solid color-mix(in srgb, var(--mov-primary) 52%, var(--mov-border));
  border-radius: 9px;
  background: transparent;
}

.mov-answer.is-selected .mov-checkbox {
  color: #fff;
  background: var(--mov-global-gradient);
  border-color: transparent;
}

.mov-answers-image-list .mov-answer {
  min-height: 84px;
  padding-left: 92px;
}

.mov-answers-image-list .mov-answer-image {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 9px;
  width: 66px;
  border-radius: calc(var(--mov-card-radius) - 8px);
  background: color-mix(in srgb, var(--mov-border) 46%, transparent);
  overflow: hidden;
}

.mov-answer-image img,
.mov-answer-image .mov-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--mov-primary) 9%, var(--mov-surface)), color-mix(in srgb, var(--mov-secondary) 10%, var(--mov-surface)));
}

.mov-answers-image-grid,
.mov-answers-compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mov-answers-image-grid .mov-answer,
.mov-answers-compact-grid .mov-answer {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  min-height: 0;
  padding: 7px 7px 16px;
  text-align: center;
  overflow: hidden;
}

.mov-answers-image-grid .mov-answer-image,
.mov-answers-compact-grid .mov-answer-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 13px;
  border-radius: calc(var(--mov-card-radius) - 7px);
  background: color-mix(in srgb, var(--mov-border) 40%, transparent);
  overflow: hidden;
}

.mov-answers-image-grid .mov-answer-label,
.mov-answers-compact-grid .mov-answer-label {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 0 7px;
}

.mov-answers-image-grid .mov-answer-arrow,
.mov-answers-image-grid .mov-checkbox,
.mov-answers-compact-grid .mov-answer-arrow,
.mov-answers-compact-grid .mov-checkbox {
  display: none;
}

.mov-answers-compact-grid .mov-answer-image {
  aspect-ratio: 1 / 1;
}

.mov-primary-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin: 28px 0 0;
  padding: 15px 23px;
  border: 0;
  border-radius: var(--mov-button-radius);
  color: var(--mov-button-text);
  background: var(--mov-global-gradient), var(--mov-primary);
  box-shadow: 0 15px 32px color-mix(in srgb, var(--mov-primary) 27%, transparent);
  font: 760 17px/1.25 var(--mov-body-font);
  letter-spacing: -.01em;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  appearance: none;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, opacity .2s ease;
}

.mov-primary-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, .28) 46%, transparent 70%);
  transform: translateX(-115%);
  transition: transform .65s ease;
}

.mov-primary-button:hover::before {
  transform: translateX(115%);
}

.mov-quiz-runtime[data-button-motion="lift"] .mov-primary-button:hover {
  box-shadow: 0 19px 39px color-mix(in srgb, var(--mov-primary) 34%, transparent);
  transform: translateY(-3px);
}

.mov-quiz-runtime[data-button-motion="press"] .mov-primary-button:active {
  transform: translateY(2px) scale(.99);
}

.mov-quiz-runtime[data-button-motion="glow"] .mov-primary-button {
  animation: mov-button-glow 2.6s ease-in-out infinite;
}

.mov-primary-button:focus-visible {
  outline: 4px solid color-mix(in srgb, var(--mov-primary) 28%, transparent);
  outline-offset: 3px;
}

.mov-primary-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  filter: grayscale(.3);
  opacity: .48;
  transform: none;
}

.mov-primary-button.is-locked-hidden {
  height: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.mov-primary-button.is-unlocked {
  animation: mov-unlock .58s cubic-bezier(.2, .9, .25, 1.25) both;
}

.mov-stage-buttons {
  display: grid;
  gap: 10px;
  width: 100%;
  margin: 24px 0 0;
}

.mov-stage-link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--mov-button-radius);
  font: 740 15px/1.25 var(--mov-body-font);
  text-align: center;
  cursor: pointer;
  appearance: none;
  transition: transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .22s ease, background .22s ease;
}

.mov-stage-link-button.is-primary {
  color: var(--mov-button-text);
  background: var(--mov-global-gradient), var(--mov-primary);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--mov-primary) 23%, transparent);
}

.mov-stage-link-button.is-secondary {
  border-color: color-mix(in srgb, var(--mov-primary) 18%, var(--mov-border));
  color: var(--mov-primary-dark);
  background: color-mix(in srgb, var(--mov-primary) 11%, var(--mov-surface));
}

.mov-stage-link-button.is-outline {
  border-color: color-mix(in srgb, var(--mov-primary) 62%, var(--mov-border));
  color: var(--mov-primary-dark);
  background: color-mix(in srgb, var(--mov-surface) 78%, transparent);
}

.mov-stage-link-button:focus-visible {
  outline: 4px solid color-mix(in srgb, var(--mov-primary) 24%, transparent);
  outline-offset: 3px;
}

.mov-quiz-runtime[data-button-motion="lift"] .mov-stage-link-button:hover {
  box-shadow: 0 16px 34px color-mix(in srgb, var(--mov-primary) 27%, transparent);
  transform: translateY(-3px);
}

.mov-quiz-runtime[data-button-motion="press"] .mov-stage-link-button:active {
  transform: translateY(2px) scale(.99);
}

.mov-quiz-runtime[data-button-motion="glow"] .mov-stage-link-button.is-primary {
  animation: mov-button-glow 2.6s ease-in-out infinite;
}

.mov-stage-media {
  width: 100%;
  margin: 26px 0 0;
  border-radius: var(--mov-card-radius);
  background: color-mix(in srgb, var(--mov-surface) 92%, transparent);
  box-shadow: 0 16px 42px rgba(23, 19, 41, .11);
  overflow: hidden;
}

.mov-stage-media.mov-image-ratio-4-5 { aspect-ratio: 4 / 5; }
.mov-stage-media.mov-image-ratio-1-1 { aspect-ratio: 1 / 1; }
.mov-stage-media.mov-image-ratio-16-9 { aspect-ratio: 16 / 9; }
.mov-stage-media.mov-image-ratio-9-16 { aspect-ratio: 9 / 16; }

.mov-stage-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mov-stage-media.mov-image-ratio-auto img {
  height: auto;
  min-height: 210px;
  max-height: 70dvh;
}

.mov-quiz-runtime .mov-rich-text {
  width: min(100%, var(--mov-stage-text-width, 94%));
  color: var(--mov-stage-text-color, var(--mov-body));
  font-size: var(--mov-stage-text-size, 17px) !important;
  line-height: var(--mov-stage-text-line-height, 1.55);
}

.mov-rich-text p,
.mov-rich-text ul,
.mov-rich-text ol {
  margin: 0;
}

.mov-quiz-runtime .mov-rich-text p,
.mov-quiz-runtime .mov-rich-text li,
.mov-quiz-runtime .mov-rich-text h2,
.mov-quiz-runtime .mov-rich-text h3,
.mov-quiz-runtime .mov-rich-text h4,
.mov-quiz-runtime .mov-rich-text span,
.mov-quiz-runtime .mov-rich-text small,
.mov-quiz-runtime .mov-rich-text em {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.mov-rich-text p:not(:last-child),
.mov-rich-text ul:not(:last-child),
.mov-rich-text ol:not(:last-child) {
  margin-bottom: var(--mov-stage-paragraph-gap, 14px);
}

.mov-quiz-runtime .mov-rich-text strong {
  color: var(--mov-stage-title-color, var(--mov-title)) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 760;
}

.mov-rich-text a {
  color: var(--mov-primary);
  font-weight: 700;
}

.mov-capture-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mov-field {
  display: grid;
  gap: 7px;
}

.mov-field > span {
  color: var(--mov-title);
  font-size: 13px;
  font-weight: 750;
}

.mov-field input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--mov-border);
  border-radius: 15px;
  color: var(--mov-title);
  background: color-mix(in srgb, var(--mov-surface) 94%, transparent);
  box-shadow: 0 7px 24px rgba(23, 19, 41, .045);
  font: 500 16px/1.2 var(--mov-body-font);
  outline: none;
  appearance: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mov-field input:focus {
  border-color: var(--mov-primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mov-primary) 12%, transparent);
}

.mov-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--mov-muted);
  font-size: 12px;
  line-height: 1.45;
}

.mov-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--mov-primary);
}

.mov-consent a {
  color: var(--mov-primary);
}

.mov-honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mov-stage-error {
  min-height: 22px;
  margin-top: 11px;
  color: #c92f4e;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.mov-video-placeholder,
.mov-player {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-top: 25px;
}

.mov-video-placeholder,
.mov-player-frame {
  position: relative;
  isolation: isolate;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--mov-card-radius);
  background: #0a0910;
  box-shadow: 0 24px 58px rgba(12, 9, 24, .22);
  overflow: hidden;
}

.mov-ratio-16-9 { aspect-ratio: 16 / 9; }
.mov-ratio-9-16 { aspect-ratio: 9 / 16; max-height: 68dvh; }
.mov-ratio-1-1 { aspect-ratio: 1 / 1; }
.mov-ratio-4-5 { aspect-ratio: 4 / 5; max-height: 68dvh; }

.mov-video-placeholder {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .78);
  background: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--mov-primary) 42%, #0a0910), #0a0910 65%);
  text-align: center;
}

.mov-video-placeholder span {
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 28px;
}

.mov-video-placeholder svg {
  width: 48px;
  height: 48px;
}

.mov-player-media,
.mov-player-target,
.mov-player-media iframe,
.mov-player-media video,
.mov-player-compat iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.mov-player-media {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.mov-player-target {
  position: absolute;
  inset: 0;
}

.mov-player-poster[hidden],
.mov-player-pause-message[hidden] {
  display: none !important;
}

.mov-player-surface-toggle {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 9px;
  width: 100%;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: background-color .22s ease, opacity .22s ease;
}

.mov-player.has-started .mov-player-surface-toggle {
  opacity: 1;
  pointer-events: auto;
}

.mov-player-surface-play {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  background: var(--mov-global-gradient);
  box-shadow: 0 14px 42px color-mix(in srgb, var(--mov-primary) 48%, transparent);
  transition: opacity .2s ease, transform .2s ease;
}

.mov-player-surface-play svg {
  width: 34px;
  height: 34px;
}

.mov-player-surface-toggle small {
  font: 750 13px/1.2 var(--mov-body-font);
  letter-spacing: .01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .52);
  transition: opacity .2s ease, transform .2s ease;
}

.mov-player.has-started:not(.is-playing):not(.is-loading) .mov-player-surface-toggle {
  background: rgba(8, 7, 14, .42);
}

.mov-player.is-playing .mov-player-surface-play,
.mov-player.is-playing .mov-player-surface-toggle small,
.mov-player.is-loading .mov-player-surface-play,
.mov-player.is-loading .mov-player-surface-toggle small {
  opacity: 0;
  transform: scale(.88);
}

.mov-player-surface-toggle:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mov-primary) 72%, #fff);
  outline-offset: -4px;
}

.mov-player-poster {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 12px;
  width: 100%;
  border: 0;
  color: #fff;
  background-color: #0b0a12;
  background-image: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--mov-primary) 54%, #0b0a12), #0b0a12 66%);
  background-position: center;
  background-size: cover;
  text-align: center;
  cursor: pointer;
  transition: opacity .28s ease, visibility .28s ease;
}

.mov-player.has-started .mov-player-poster {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mov-big-play {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  color: #fff;
  background: var(--mov-global-gradient);
  box-shadow: 0 14px 42px color-mix(in srgb, var(--mov-primary) 48%, transparent);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mov-player-poster:hover .mov-big-play {
  box-shadow: 0 18px 52px color-mix(in srgb, var(--mov-primary) 62%, transparent);
  transform: scale(1.07);
}

.mov-big-play svg {
  width: 36px;
  height: 36px;
}

.mov-player-poster small {
  font: 700 13px/1.2 var(--mov-body-font);
  letter-spacing: .02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .42);
}

.mov-player-controls {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  color: #fff;
  background: rgba(10, 9, 16, .94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  transition: opacity .2s ease, transform .2s ease;
}

.mov-player.is-ready .mov-player-controls,
.mov-player.has-started .mov-player-controls,
.mov-player.has-embedded-player .mov-player-controls,
.mov-player.is-preview .mov-player-controls {
  display: flex;
}

.mov-player-progress {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  width: 100%;
  min-height: 18px;
  margin-top: 8px;
  padding: 5px 2px;
}

.mov-player.has-started .mov-player-progress,
.mov-player.is-ready .mov-player-progress,
.mov-player.is-preview .mov-player-progress {
  display: flex;
}

.mov-player-control {
  display: grid;
  flex: 0 0 36px;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.mov-player-control:hover,
.mov-player-control:focus-visible {
  background: rgba(255, 255, 255, .13);
  outline: none;
}

.mov-player-control svg {
  width: 22px;
  height: 22px;
}

.mov-player-track {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
}

.mov-player-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mov-secondary), var(--mov-primary));
  box-shadow: 0 0 14px color-mix(in srgb, var(--mov-primary) 68%, transparent);
  pointer-events: none;
  transition: width .35s linear;
}

.mov-player-buffer {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, .28);
  pointer-events: none;
  transition: width .25s linear;
}

.mov-player-range {
  position: absolute;
  inset: -10px 0;
  width: 100%;
  height: 25px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.mov-player-range:disabled {
  cursor: default;
}

.mov-player-time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mov-player.is-progress-hidden .mov-player-track {
  display: none;
}

.mov-player-error {
  display: none;
  margin-top: 8px;
  padding: 11px 13px;
  border-radius: 12px;
  color: #fff;
  background: rgba(182, 28, 59, .92);
  font-size: 12px;
  text-align: center;
}

.mov-player.has-error .mov-player-error {
  display: block;
}

.mov-player-error a {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
}

.mov-player-notice {
  display: none;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  color: #fff;
  background: rgba(10, 9, 16, .68);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

.mov-player-notice.is-static {
  display: block;
  color: var(--mov-muted);
  border-color: var(--mov-border);
  background: color-mix(in srgb, var(--mov-surface) 90%, transparent);
  font-size: 11px;
  backdrop-filter: none;
}

.mov-player-loading-status {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--mov-primary) 18%, var(--mov-border));
  border-radius: 13px;
  color: var(--mov-title);
  background: color-mix(in srgb, var(--mov-surface) 94%, transparent);
  font-size: 12px;
}

.mov-player-loading-status > span {
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--mov-primary) 22%, transparent);
  border-top-color: var(--mov-primary);
  border-radius: 50%;
  animation: mov-spin .8s linear infinite;
}

.mov-player.is-loading .mov-player-loading-status {
  display: flex;
}

.mov-player-pause-message {
  margin-top: 9px;
  padding: 12px 14px;
  border: 1px solid #f1d39b;
  border-radius: 14px;
  color: #70460a;
  background: #fff8e8;
  box-shadow: 0 10px 26px rgba(74, 42, 0, .08);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.45;
  text-align: center;
  animation: mov-fade-up .24s ease both;
}

.mov-player-pause-message[data-tone="info"] {
  border-color: #cfe2ff;
  color: #284d7a;
  background: #f1f7ff;
}

.mov-player-pause-message[data-tone="urgent"] {
  border-color: #ffc8d2;
  color: #98213d;
  background: #fff0f3;
}

.mov-player.is-youtube-fallback .mov-player-controls {
  display: none;
}

.mov-player.is-youtube-fallback .mov-player-progress {
  display: none;
}

.mov-player.is-youtube-fallback .mov-player-notice {
  display: block;
}

.mov-player.is-loading .mov-big-play {
  animation: mov-pulse 1s ease-in-out infinite;
}

.mov-player:not(.has-started):not(.has-embedded-player).mov-attention-pulse .mov-big-play {
  animation: mov-play-pulse 1.35s ease-in-out infinite;
}

.mov-player:not(.has-started):not(.has-embedded-player).mov-attention-ring .mov-big-play::before {
  position: absolute;
  inset: -1px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: inherit;
  content: "";
  animation: mov-play-ring 1.5s ease-out infinite;
}

.mov-player:not(.has-started):not(.has-embedded-player).mov-attention-shine .mov-big-play {
  overflow: hidden;
}

.mov-player:not(.has-started):not(.has-embedded-player).mov-attention-shine .mov-big-play::after {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -55%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
  transform: skewX(-20deg);
  animation: mov-play-shine 1.8s ease-in-out infinite;
}

.mov-player-compat iframe {
  position: absolute;
  inset: 0;
}

.mov-unlock-message {
  margin-top: 14px;
  color: var(--mov-muted);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.mov-timer {
  margin: 18px 0 0;
  color: var(--mov-title);
  font-family: var(--mov-heading-font);
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.mov-loading-inner,
.mov-result-inner {
  text-align: center;
}

.mov-spinner {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border: 6px solid color-mix(in srgb, var(--mov-primary) 12%, transparent);
  border-top-color: var(--mov-primary);
  border-radius: 50%;
  animation: mov-spin .9s linear infinite;
}

.mov-spinner span {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--mov-global-gradient);
  opacity: .13;
}

.mov-loading-message {
  width: min(100%, 43ch);
  color: var(--mov-muted);
  font-size: var(--mov-stage-text-size, 15px);
}

.mov-result-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 26px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--mov-success), color-mix(in srgb, var(--mov-success) 62%, var(--mov-secondary)));
  box-shadow: 0 16px 38px color-mix(in srgb, var(--mov-success) 28%, transparent);
  font-size: 33px;
  font-weight: 850;
}

.mov-quiz-footer {
  flex: 0 0 auto;
  padding: 20px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  color: var(--mov-muted);
  font-size: 11px;
  text-align: center;
}

.mov-quiz-runtime[data-shadow="none"] .mov-answer,
.mov-quiz-runtime[data-shadow="none"] .mov-stage-media {
  box-shadow: none;
}

.mov-quiz-runtime[data-shadow="elevated"] .mov-answer,
.mov-quiz-runtime[data-shadow="elevated"] .mov-stage-media {
  box-shadow: 0 18px 45px rgba(23, 19, 41, .14);
}

.mov-quiz-runtime[data-shadow="glass"] .mov-answer {
  background: color-mix(in srgb, var(--mov-surface) 76%, transparent);
  backdrop-filter: blur(18px);
}

.mov-quiz-shell.is-entering.mov-transition-fade-up .mov-stage-inner {
  animation: mov-fade-up .42s cubic-bezier(.2, .8, .2, 1) both;
}

.mov-quiz-shell.is-entering.mov-transition-slide .mov-stage-inner {
  animation: mov-slide .42s cubic-bezier(.2, .8, .2, 1) both;
}

.mov-quiz-shell.is-entering.mov-transition-scale .mov-stage-inner {
  animation: mov-scale .38s cubic-bezier(.2, .8, .2, 1) both;
}

.mov-quiz-runtime[data-animation="expressive"] .mov-answer {
  animation: mov-answer-in .48s cubic-bezier(.2, .85, .2, 1) both;
  animation-delay: var(--mov-answer-delay, 0ms);
}

.mov-quiz-runtime[data-animation="subtle"] .mov-stage-inner {
  animation-duration: .26s !important;
}

@keyframes mov-fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes mov-slide { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes mov-scale { from { opacity: 0; transform: scale(.975); } to { opacity: 1; transform: none; } }
@keyframes mov-answer-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes mov-spin { to { transform: rotate(360deg); } }
@keyframes mov-pulse { 50% { transform: scale(.92); opacity: .72; } }
@keyframes mov-play-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 14px 42px color-mix(in srgb, var(--mov-primary) 48%, transparent); } 50% { transform: scale(1.09); box-shadow: 0 18px 58px color-mix(in srgb, var(--mov-primary) 72%, transparent); } }
@keyframes mov-play-ring { 0% { opacity: .75; transform: scale(1); } 75%, 100% { opacity: 0; transform: scale(1.55); } }
@keyframes mov-play-shine { 0%, 30% { left: -55%; } 70%, 100% { left: 125%; } }
@keyframes mov-unlock { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes mov-button-glow { 0%, 100% { box-shadow: 0 14px 30px color-mix(in srgb, var(--mov-primary) 24%, transparent); } 50% { box-shadow: 0 18px 46px color-mix(in srgb, var(--mov-primary) 45%, transparent); } }

@media (min-width: 700px) {
  .mov-quiz-runtime { padding: 26px; }
  .mov-quiz-shell { height: 100%; min-height: 0; border-radius: 30px; box-shadow: 0 28px 70px rgba(23, 19, 41, .13); }
  body.mov-quiz-standalone .mov-quiz-runtime { display: grid; place-items: center; }
  .mov-stage-inner { padding-right: var(--mov-stage-padding-x, 28px); padding-left: var(--mov-stage-padding-x, 28px); }
}

@media (max-width: 380px) {
  .mov-stage-inner { padding-right: min(var(--mov-stage-padding-x, 15px), 15px); padding-left: min(var(--mov-stage-padding-x, 15px), 15px); }
  .mov-quiz-runtime .mov-stage-title { font-size: var(--mov-stage-title-size, 28px) !important; }
  .mov-answer { font-size: 16px; }
  .mov-player-controls { gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .mov-quiz-runtime *,
  .mov-quiz-runtime *::before,
  .mov-quiz-runtime *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
