.thps-slider {
  --thps-accent: #2f39d2;
  --thps-side-scale: 0.83;
  --thps-far-scale: 0.7;
  --thps-transition-duration: .45s;
  --thps-transition-ease: ease;
  --thps-stage-top-offset: 20px;
  --thps-nav-center: 220px;
  --thps-label-dot-inactive-bg: rgba(47, 57, 210, 0.22);
  --thps-label-dot-active-bg: color-mix(in srgb, var(--thps-accent) 12%, #ffffff 88%);
  --thps-label-dot-active-text: var(--thps-accent);
  position: relative;
  perspective: 1600px;
  transform-style: preserve-3d;
  width: 100%;
  padding: 20px 76px 54px;
  overflow: hidden;
}

.thps-stage {
  position: relative;
  min-height: 440px;
  outline: none;
  touch-action: pan-y;
  transition: height .36s ease;
}

@media (hover: hover) and (pointer: fine) {
  .thps-stage {
    cursor: grab;
  }

  .thps-stage.is-pointer-down,
  .thps-stage.is-dragging {
    cursor: grabbing;
  }
}

.thps-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--thps-slide-width-desktop, min(70vw, 860px));
  max-width: 100%;
  transform: translate3d(-50%, 0, 0) scale(1);
  transition: transform var(--thps-transition-duration) var(--thps-transition-ease), opacity .35s ease, filter .35s ease;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}

.thps-slide.is-active,
.thps-slide.is-prev,
.thps-slide.is-next,
.thps-slide.is-far-prev,
.thps-slide.is-far-next {
  pointer-events: auto;
}

.thps-slide.is-active {
  opacity: 1;
  z-index: 5;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.thps-slide.is-prev {
  opacity: .74;
  z-index: 4;
  transform: translate3d(calc(-50% - 37%), 18px, 0) scale(var(--thps-side-scale));
}

.thps-slide.is-next {
  opacity: .74;
  z-index: 4;
  transform: translate3d(calc(-50% + 37%), 18px, 0) scale(var(--thps-side-scale));
}

.thps-slide.is-far-prev {
  opacity: .34;
  z-index: 3;
  transform: translate3d(calc(-50% - 63%), 32px, 0) scale(var(--thps-far-scale));
}

.thps-slide.is-far-next {
  opacity: .34;
  z-index: 3;
  transform: translate3d(calc(-50% + 63%), 32px, 0) scale(var(--thps-far-scale));
}

.thps-slider {
  --thps-intro-active-transform: translate3d(-50%, 0, 0) scale(1);
  --thps-intro-prev-transform: translate3d(calc(-50% - 37%), 18px, 0) scale(var(--thps-side-scale));
  --thps-intro-next-transform: translate3d(calc(-50% + 37%), 18px, 0) scale(var(--thps-side-scale));
  --thps-intro-far-prev-transform: translate3d(calc(-50% - 63%), 32px, 0) scale(var(--thps-far-scale));
  --thps-intro-far-next-transform: translate3d(calc(-50% + 63%), 32px, 0) scale(var(--thps-far-scale));
  --thps-intro-prev-opacity: .74;
  --thps-intro-next-opacity: .74;
  --thps-intro-far-prev-opacity: .34;
  --thps-intro-far-next-opacity: .34;
}

.thps-slider.thps-intro-prep .thps-slide.is-prev,
.thps-slider.thps-intro-prep .thps-slide.is-next,
.thps-slider.thps-intro-prep .thps-slide.is-far-prev,
.thps-slider.thps-intro-prep .thps-slide.is-far-next {
  opacity: 0 !important;
}

.thps-slider.thps-intro-run .thps-slide.is-active {
  animation: thps-enter-active .88s cubic-bezier(.2, .9, .24, 1) both;
}

.thps-slider.thps-intro-run .thps-slide.is-prev {
  animation: thps-enter-prev 1.14s cubic-bezier(.18, .9, .22, 1) both;
}

.thps-slider.thps-intro-run .thps-slide.is-next {
  animation: thps-enter-next 1.14s cubic-bezier(.18, .9, .22, 1) both;
}

.thps-slider.thps-intro-run .thps-slide.is-far-prev {
  animation: thps-enter-far-prev 1.3s cubic-bezier(.18, .9, .22, 1) both;
  animation-delay: .22s;
}

.thps-slider.thps-intro-run .thps-slide.is-far-next {
  animation: thps-enter-far-next 1.3s cubic-bezier(.18, .9, .22, 1) both;
  animation-delay: .22s;
}

@keyframes thps-enter-active {
  0% { transform: translate3d(-50%, 18px, 0) scale(.96); opacity: .84; }
  68% { transform: translate3d(-50%, -2px, 0) scale(1.012); opacity: 1; }
  100% { transform: var(--thps-intro-active-transform); opacity: 1; }
}

@keyframes thps-enter-prev {
  0% { transform: translate3d(-50%, 8px, 0) scale(.93); opacity: 0; }
  100% { transform: var(--thps-intro-prev-transform); opacity: var(--thps-intro-prev-opacity); }
}

@keyframes thps-enter-next {
  0% { transform: translate3d(-50%, 8px, 0) scale(.93); opacity: 0; }
  100% { transform: var(--thps-intro-next-transform); opacity: var(--thps-intro-next-opacity); }
}

@keyframes thps-enter-far-prev {
  0% { transform: translate3d(-50%, 14px, 0) scale(.89); opacity: 0; }
  100% { transform: var(--thps-intro-far-prev-transform); opacity: var(--thps-intro-far-prev-opacity); }
}

@keyframes thps-enter-far-next {
  0% { transform: translate3d(-50%, 14px, 0) scale(.89); opacity: 0; }
  100% { transform: var(--thps-intro-far-next-transform); opacity: var(--thps-intro-far-next-opacity); }
}

.thps-slider[data-thps-transition="cinematic"] {
  --thps-transition-duration: .72s;
  --thps-transition-ease: cubic-bezier(.22, .88, .24, 1);
  --thps-intro-prev-transform: translate3d(calc(-50% - 38%), 24px, -110px) rotateY(16deg) scale(.8);
  --thps-intro-next-transform: translate3d(calc(-50% + 38%), 24px, -110px) rotateY(-16deg) scale(.8);
  --thps-intro-far-prev-transform: translate3d(calc(-50% - 66%), 40px, -200px) rotateY(22deg) scale(.66);
  --thps-intro-far-next-transform: translate3d(calc(-50% + 66%), 40px, -200px) rotateY(-22deg) scale(.66);
  --thps-intro-prev-opacity: .68;
  --thps-intro-next-opacity: .68;
  --thps-intro-far-prev-opacity: .24;
  --thps-intro-far-next-opacity: .24;
}

.thps-slider[data-thps-transition="cinematic"] .thps-slide.is-prev {
  transform: translate3d(calc(-50% - 38%), 24px, -110px) rotateY(16deg) scale(.8);
  opacity: .68;
  filter: saturate(.9);
}

.thps-slider[data-thps-transition="cinematic"] .thps-slide.is-next {
  transform: translate3d(calc(-50% + 38%), 24px, -110px) rotateY(-16deg) scale(.8);
  opacity: .68;
  filter: saturate(.9);
}

.thps-slider[data-thps-transition="cinematic"] .thps-slide.is-far-prev {
  transform: translate3d(calc(-50% - 66%), 40px, -200px) rotateY(22deg) scale(.66);
  opacity: .24;
}

.thps-slider[data-thps-transition="cinematic"] .thps-slide.is-far-next {
  transform: translate3d(calc(-50% + 66%), 40px, -200px) rotateY(-22deg) scale(.66);
  opacity: .24;
}

.thps-slider[data-thps-transition="cinematic"].is-transitioning[data-thps-direction="next"] .thps-slide.is-active {
  animation: thps-cinematic-next .72s cubic-bezier(.22, .88, .24, 1);
}

.thps-slider[data-thps-transition="cinematic"].is-transitioning[data-thps-direction="prev"] .thps-slide.is-active {
  animation: thps-cinematic-prev .72s cubic-bezier(.22, .88, .24, 1);
}

.thps-slider[data-thps-transition="velvet"] {
  --thps-transition-duration: .64s;
  --thps-transition-ease: cubic-bezier(.16, 1, .3, 1);
  --thps-intro-active-transform: translate3d(-50%, 0, 0) scale(1.02);
  --thps-intro-prev-transform: translate3d(calc(-50% - 34%), 22px, 0) scale(.86);
  --thps-intro-next-transform: translate3d(calc(-50% + 34%), 22px, 0) scale(.86);
  --thps-intro-far-prev-transform: translate3d(calc(-50% - 58%), 30px, 0) scale(.72);
  --thps-intro-far-next-transform: translate3d(calc(-50% + 58%), 30px, 0) scale(.72);
  --thps-intro-prev-opacity: .78;
  --thps-intro-next-opacity: .78;
  --thps-intro-far-prev-opacity: .22;
  --thps-intro-far-next-opacity: .22;
}

.thps-slider[data-thps-transition="velvet"] .thps-slide {
  filter: blur(0);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-active {
  transform: translate3d(-50%, 0, 0) scale(1.02);
  filter: drop-shadow(0 26px 60px rgba(18, 28, 78, 0.12));
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-prev,
.thps-slider[data-thps-transition="velvet"] .thps-slide.is-next {
  opacity: .78;
  filter: blur(.6px) saturate(.94);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-prev {
  transform: translate3d(calc(-50% - 34%), 22px, 0) scale(.86);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-next {
  transform: translate3d(calc(-50% + 34%), 22px, 0) scale(.86);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-prev,
.thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-next {
  opacity: .22;
  filter: blur(1.4px) saturate(.88);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-prev {
  transform: translate3d(calc(-50% - 58%), 30px, 0) scale(.72);
}

.thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-next {
  transform: translate3d(calc(-50% + 58%), 30px, 0) scale(.72);
}

.thps-slider[data-thps-transition="velvet"].is-transitioning .thps-slide.is-active {
  animation: thps-velvet-pop .64s cubic-bezier(.16, 1, .3, 1);
}

.thps-slider[data-thps-transition="runway"] {
  --thps-transition-duration: .58s;
  --thps-transition-ease: cubic-bezier(.2, .9, .2, 1);
  --thps-intro-prev-transform: translate3d(calc(-50% - 40%), 10px, 0) scale(.9);
  --thps-intro-next-transform: translate3d(calc(-50% + 40%), 10px, 0) scale(.9);
  --thps-intro-far-prev-transform: translate3d(calc(-50% - 68%), 18px, 0) scale(.76);
  --thps-intro-far-next-transform: translate3d(calc(-50% + 68%), 18px, 0) scale(.76);
  --thps-intro-prev-opacity: .82;
  --thps-intro-next-opacity: .82;
  --thps-intro-far-prev-opacity: .3;
  --thps-intro-far-next-opacity: .3;
}

.thps-slider[data-thps-transition="runway"] .thps-slide.is-prev,
.thps-slider[data-thps-transition="runway"] .thps-slide.is-next {
  opacity: .82;
}

.thps-slider[data-thps-transition="runway"] .thps-slide.is-prev {
  transform: translate3d(calc(-50% - 40%), 10px, 0) scale(.9);
}

.thps-slider[data-thps-transition="runway"] .thps-slide.is-next {
  transform: translate3d(calc(-50% + 40%), 10px, 0) scale(.9);
}

.thps-slider[data-thps-transition="runway"] .thps-slide.is-far-prev {
  transform: translate3d(calc(-50% - 71%), 16px, 0) scale(.78);
  opacity: .28;
}

.thps-slider[data-thps-transition="runway"] .thps-slide.is-far-next {
  transform: translate3d(calc(-50% + 71%), 16px, 0) scale(.78);
  opacity: .28;
}

.thps-slider[data-thps-transition="runway"].is-transitioning[data-thps-direction="next"] .thps-slide.is-active {
  animation: thps-runway-next .58s cubic-bezier(.2, .9, .2, 1);
}

.thps-slider[data-thps-transition="runway"].is-transitioning[data-thps-direction="prev"] .thps-slide.is-active {
  animation: thps-runway-prev .58s cubic-bezier(.2, .9, .2, 1);
}

@keyframes thps-cinematic-next {
  0% { transform: translate3d(calc(-50% + 12%), 0, -80px) rotateY(-12deg) scale(.92); }
  100% { transform: translate3d(-50%, 0, 0) rotateY(0deg) scale(1); }
}

@keyframes thps-cinematic-prev {
  0% { transform: translate3d(calc(-50% - 12%), 0, -80px) rotateY(12deg) scale(.92); }
  100% { transform: translate3d(-50%, 0, 0) rotateY(0deg) scale(1); }
}

@keyframes thps-velvet-pop {
  0% { transform: translate3d(-50%, 20px, 0) scale(.93); opacity: .75; }
  62% { transform: translate3d(-50%, -3px, 0) scale(1.03); opacity: 1; }
  100% { transform: translate3d(-50%, 0, 0) scale(1.02); opacity: 1; }
}

@keyframes thps-runway-next {
  0% { transform: translate3d(calc(-50% + 18%), 0, 0) scale(.94); }
  55% { transform: translate3d(-50%, 0, 0) scale(1.018); }
  100% { transform: translate3d(-50%, 0, 0) scale(1); }
}

@keyframes thps-runway-prev {
  0% { transform: translate3d(calc(-50% - 18%), 0, 0) scale(.94); }
  55% { transform: translate3d(-50%, 0, 0) scale(1.018); }
  100% { transform: translate3d(-50%, 0, 0) scale(1); }
}

.thps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--thps-slide-radius, 28px);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(22, 35, 80, 0.12);
}

.thps-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9eefb;
}

.thps-poster-layer {
  position: absolute;
  inset: 0;
}

.thps-media-link,
.thps-media img,
.thps-video-frame-host,
.thps-video-frame,
.thps-video-frame iframe,
.thps-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
}

.thps-media-link,
.thps-video-frame-host,
.thps-video-frame {
  position: absolute;
  inset: 0;
}

.thps-video-frame-host {
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #000;
  transition: opacity .3s ease, visibility .3s ease;
}

.thps-media img,
.thps-video-frame iframe,
.thps-video-frame video {
  object-fit: cover;
  border: 0;
}

.thps-media-link,
.thps-media img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.thps-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.06) 0%, rgba(17, 24, 39, 0.16) 42%, rgba(17, 24, 39, 0.70) 100%);
  pointer-events: none;
}

.thps-content {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 3;
  color: #ffffff;
  transition: bottom .34s ease, transform .34s ease, opacity .28s ease;
}

.thps-meta-inline {
  display: block;
}

.thps-meta-corner {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  right: auto;
  bottom: auto;
  max-width: calc(100% - 48px);
  pointer-events: none;
  display: none;
}

.thps-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.10) 100%);
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 14px 32px rgba(6, 12, 24, 0.18), inset 0 1px 0 rgba(255,255,255,0.34), inset 0 -1px 0 rgba(255,255,255,0.08);
  text-shadow: 0 1px 12px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  transition: opacity .26s ease, transform .34s ease, max-height .34s ease, margin .34s ease;
  max-height: 80px;
  overflow: hidden;
  white-space: nowrap;
}

.thps-meta-inline .thps-meta {
  margin-bottom: 14px;
}

.thps-action-meta {
  display: none;
  pointer-events: none;
}

.thps-action-meta .thps-meta {
  margin: 0;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  justify-content: center;
  width: var(--thps-cta-button-width, auto);
  min-width: var(--thps-cta-button-width, auto);
  max-width: none;
}

.thps-meta-label,
.thps-meta-sep {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .thps-slider[data-thps-show-meta-desktop-tablet="no"] .thps-meta-inline,
  .thps-slider[data-thps-show-meta-desktop-tablet="no"] .thps-meta-corner,
  .thps-slider[data-thps-show-meta-desktop-tablet="no"] .thps-action-meta {
    display: none !important;
  }

  .thps-slider[data-thps-hide-meta-primary-desktop-tablet="yes"] .thps-meta-label--primary,
  .thps-slider[data-thps-hide-meta-primary-desktop-tablet="yes"] .thps-meta-sep--primary {
    display: none;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="content_default"] .thps-meta-inline {
    display: block;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="top_left"] .thps-meta-inline,
  .thps-slider[data-thps-meta-position-desktop-tablet="top_right"] .thps-meta-inline,
  .thps-slider[data-thps-meta-position-desktop-tablet="bottom_right"] .thps-meta-inline,
  .thps-slider[data-thps-meta-position-desktop-tablet="right_of_cta"] .thps-meta-inline {
    display: none;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="top_left"] .thps-meta-corner,
  .thps-slider[data-thps-meta-position-desktop-tablet="top_right"] .thps-meta-corner,
  .thps-slider[data-thps-meta-position-desktop-tablet="bottom_right"] .thps-meta-corner {
    display: block;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="right_of_cta"] .thps-meta-corner {
    display: none;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="right_of_cta"] .thps-action-meta {
    display: flex;
    align-items: center;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="top_left"] .thps-meta-corner {
    top: 24px;
    left: 24px;
    right: auto;
    bottom: auto;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="top_right"] .thps-meta-corner {
    top: 24px;
    right: 24px;
    left: auto;
    bottom: auto;
  }

  .thps-slider[data-thps-meta-position-desktop-tablet="bottom_right"] .thps-meta-corner {
    right: 24px;
    bottom: 22px;
    left: auto;
    top: auto;
  }
}

.thps-title {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity .26s ease, transform .34s ease, max-height .34s ease, margin .34s ease;
  max-height: 110px;
}

.thps-title--season-suffix {
  padding-top: calc(0.52em + max(var(--thps-title-season-top-offset, 0px), 0px));
  margin-top: calc(-1 * (0.52em + max(var(--thps-title-season-top-offset, 0px), 0px)));
  max-height: calc(110px + 0.52em + max(var(--thps-title-season-top-offset, 0px), 0px));
  overflow: visible;
}


.thps-title-main {
  display: inline;
}

.thps-title-tail-lockup {
  display: inline-block;
  white-space: nowrap;
}

.thps-title-tail-word {
  display: inline;
}

.thps-title-tail-word-main {
  display: inline;
}

.thps-title-tail-anchor {
  position: relative;
  display: inline-block;
}

.thps-title-season-suffix {
  position: absolute;
  left: calc(100% + 0.06em);
  top: 0;
  display: inline-block;
  color: var(--thps-title-season-color, #ffd45f);
  font-size: var(--thps-title-season-size, 17px);
  font-weight: var(--thps-title-season-weight, 800);
  line-height: 1;
  letter-spacing: 0.015em;
  transform: translateY(calc(-0.44em - var(--thps-title-season-top-offset, 0px)));
  transform-origin: left bottom;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
}

.thps-title-tail-punct {
  display: inline;
}

.thps-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  transition: margin .34s ease, transform .34s ease, opacity .26s ease;
}

.thps-actions.thps-actions--overlay {
  position: relative;
  z-index: 2;
}

.thps-actions.thps-actions--video {
  justify-content: center;
  margin-top: 0;
}

.thps-actions.thps-actions--paired .thps-button {
  flex: 0 0 auto;
}

.thps-actions.thps-actions--paired .thps-button--tickets {
  width: var(--thps-cta-button-width, auto);
  min-width: var(--thps-cta-button-width, auto);
}

.thps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--thps-accent);
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(47, 57, 210, 0.26);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.thps-button:hover,
.thps-button:focus {
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(47, 57, 210, 0.34);
}


.thps-video-actions-host {
  display: block;
  width: 100%;
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  opacity: 0;
  background: var(--thps-video-actions-bg, linear-gradient(180deg, rgba(11, 18, 38, 0.98) 0%, rgba(16, 24, 44, 0.94) 100%));
  transition: max-height .34s ease, padding .34s ease, opacity .28s ease;
}

.thps-video-stop {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.64);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(9, 14, 27, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, transform .26s ease, visibility .26s ease, background .26s ease;
}

.thps-video-stop:hover,
.thps-video-stop:focus-visible {
  background: rgba(15, 23, 42, 0.82);
  transform: scale(1.04);
}

.thps-video-stop-icon {
  font-size: 24px;
  line-height: 1;
}

.thps-slide.is-playing .thps-content {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.thps-slide.is-playing .thps-meta-inline,
.thps-slide.is-playing .thps-meta-corner,
.thps-slide.is-playing .thps-meta,
.thps-slide.is-playing .thps-title,
.thps-slide.is-playing .thps-actions--overlay,
.thps-slide.is-playing .thps-video-trigger,
.thps-slide.is-playing .thps-overlay,
.thps-slide.is-playing .thps-media-link {
  opacity: 0;
  transform: translateY(12px);
  max-height: 0;
  margin: 0;
  pointer-events: none;
  visibility: hidden;
}

.thps-slide.is-playing .thps-video-frame-host {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thps-slide.is-playing .thps-video-stop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thps-slide.is-playing .thps-video-actions-host {
  max-height: 160px;
  padding: 16px 24px 24px;
  opacity: 1;
}

.thps-slider[data-thps-show-video-actions="no"] .thps-slide.is-playing .thps-video-actions-host {
  display: none;
}

.thps-slide.is-playing .thps-video-actions-host .thps-actions {
  justify-content: center;
  margin-top: 0;
  transform: translateY(0);
  opacity: 1;
}

.thps-video-trigger,
.thps-nav,
.thps-dot {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
}

.thps-video-trigger {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(47, 57, 210, 0.95);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(47, 57, 210, 0.32);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}


.thps-slide:not(.is-active) .thps-video-trigger {
  pointer-events: none;
}

.thps-slider[data-thps-show-side-video-icon="no"] .thps-slide:not(.is-active) .thps-video-trigger {
  opacity: 0;
  visibility: hidden;
}

.thps-video-trigger:hover,
.thps-video-trigger:focus {
  transform: scale(1.08);
  box-shadow: 0 18px 38px rgba(47, 57, 210, 0.38);
}

.thps-video-icon {
  display: inline-flex;
  margin-left: 3px;
  font-size: 22px;
  line-height: 1;
}

.thps-nav {
  position: absolute;
  top: calc(var(--thps-stage-top-offset, 20px) + var(--thps-nav-center, 220px));
  z-index: 8;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--thps-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 57, 210, 0.24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.thps-nav:hover,
.thps-nav:focus {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 16px 34px rgba(47, 57, 210, 0.30);
}

.thps-nav span {
  display: inline-block;
  font-size: 32px;
  line-height: 1;
  margin-top: -2px;
}

.thps-nav-prev { left: 6px; }
.thps-nav-next { right: 6px; }

.thps-dots {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
  padding: 8px 0 10px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  opacity: 1;
  overflow: visible;
  transform: translateY(-86px);
  transition: opacity .24s ease, transform .28s ease;
}

.thps-slider.has-playing .thps-dots {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-94px);
  pointer-events: none;
}

.thps-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--thps-accent);
  transform-origin: center;
  transition: transform .24s ease, opacity .24s ease, background-color .24s ease, min-width .28s ease, width .28s ease, height .28s ease, padding .28s ease, box-shadow .24s ease, border-color .24s ease;
}

.thps-dot-core {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(47, 57, 210, 0.22);
  flex: 0 0 auto;
  transition: transform .24s ease, background-color .24s ease, opacity .24s ease, box-shadow .24s ease, width .24s ease, height .24s ease;
}

.thps-dot-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  color: inherit;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transform: translateX(-2px);
  transition: opacity .24s ease, max-width .28s ease, transform .28s ease;
}

.thps-dot.is-active {
  transform: scale(1.1);
}

.thps-dot.is-active .thps-dot-core {
  background: var(--thps-accent);
  transform: scale(1.14);
}

.thps-slider[data-thps-dots-style="label"] .thps-dots {
  gap: 8px;
}

.thps-slider[data-thps-dots-style="label"] .thps-dot {
  min-width: 11px;
}

.thps-slider[data-thps-dots-style="label"] .thps-dot .thps-dot-core {
  background: var(--thps-label-dot-inactive-bg);
}

.thps-slider[data-thps-dots-style="label"] .thps-dot.is-active {
  min-width: 42px;
  height: 28px;
  padding: 0 12px 0 10px;
  background: var(--thps-label-dot-active-bg);
  box-shadow: 0 8px 18px rgba(47, 57, 210, 0.12);
  transform: scale(1);
}

.thps-slider[data-thps-dots-style="label"] .thps-dot.is-active .thps-dot-core {
  width: 9px;
  height: 9px;
  background: var(--thps-label-dot-active-text);
  transform: none;
}

.thps-slider[data-thps-dots-style="label"] .thps-dot.is-active .thps-dot-label {
  opacity: 1;
  max-width: 32px;
  transform: translateX(0);
  color: var(--thps-label-dot-active-text);
}

.thps-slider[data-thps-dots-style="number_badge"] .thps-dots {
  gap: 8px;
}

.thps-slider[data-thps-dots-style="number_badge"] .thps-dot.is-active {
  width: 34px;
  min-width: 34px;
  height: 34px;
  padding: 0;
  background: var(--thps-accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(47, 57, 210, 0.18);
  transform: none;
}

.thps-slider[data-thps-dots-style="number_badge"] .thps-dot.is-active .thps-dot-core {
  display: none;
}

.thps-slider[data-thps-dots-style="number_badge"] .thps-dot.is-active .thps-dot-label {
  opacity: 1;
  max-width: 18px;
  transform: translateX(0);
  color: #ffffff;
}



@media (max-width: 767px) {
  .thps-slider[data-thps-dots-style="label"] .thps-dot.is-active {
    min-width: 38px;
    height: 26px;
    padding: 0 10px 0 9px;
  }

  .thps-slider[data-thps-dots-style="number_badge"] .thps-dot.is-active {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }

  .thps-dot-label {
    font-size: 11px;
  }

  .thps-dots {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
  }
}

.thps-empty {
  padding: 18px 20px;
  border: 1px solid #dce4ff;
  border-radius: 16px;
  background: #f8faff;
  color: #334155;
}

@media (max-width: 1279px) {
  .thps-slide { width: var(--thps-slide-width-tablet, min(74vw, 760px)); }
  .thps-slide.is-prev { transform: translate3d(calc(-50% - 34%), 18px, 0) scale(0.84); }
  .thps-slide.is-next { transform: translate3d(calc(-50% + 34%), 18px, 0) scale(0.84); }
  .thps-slide.is-far-prev { transform: translate3d(calc(-50% - 55%), 28px, 0) scale(0.74); }
  .thps-slide.is-far-next { transform: translate3d(calc(-50% + 55%), 28px, 0) scale(0.74); }
}

@media (max-width: 767px) {
  .thps-slider {
    --thps-stage-top-offset: 12px;
    padding: 12px 4% 42px;
  }

  .thps-stage {
    min-height: auto;
  }

  .thps-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 92%;
    max-width: none;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: none;
  }

  .thps-slide.is-active,
  .thps-slider[data-thps-transition="cinematic"] .thps-slide.is-active,
  .thps-slider[data-thps-transition="velvet"] .thps-slide.is-active,
  .thps-slider[data-thps-transition="runway"] .thps-slide.is-active {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
    filter: none;
    animation: none;
  }

  .thps-slide.is-prev,
  .thps-slide.is-far-prev,
  .thps-slider[data-thps-transition="cinematic"] .thps-slide.is-prev,
  .thps-slider[data-thps-transition="cinematic"] .thps-slide.is-far-prev,
  .thps-slider[data-thps-transition="velvet"] .thps-slide.is-prev,
  .thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-prev,
  .thps-slider[data-thps-transition="runway"] .thps-slide.is-prev,
  .thps-slider[data-thps-transition="runway"] .thps-slide.is-far-prev {
    opacity: 1;
    transform: translate3d(calc(-50% - 108%), 0, 0) scale(1);
    filter: none;
    animation: none;
  }

  .thps-slide.is-next,
  .thps-slide.is-far-next,
  .thps-slider[data-thps-transition="cinematic"] .thps-slide.is-next,
  .thps-slider[data-thps-transition="cinematic"] .thps-slide.is-far-next,
  .thps-slider[data-thps-transition="velvet"] .thps-slide.is-next,
  .thps-slider[data-thps-transition="velvet"] .thps-slide.is-far-next,
  .thps-slider[data-thps-transition="runway"] .thps-slide.is-next,
  .thps-slider[data-thps-transition="runway"] .thps-slide.is-far-next {
    opacity: 1;
    transform: translate3d(calc(-50% + 108%), 0, 0) scale(1);
    filter: none;
    animation: none;
  }

  .thps-card {
    border-radius: var(--thps-slide-radius, 28px);
  }

  .thps-content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .thps-actions {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .thps-actions.thps-actions--overlay.thps-actions--paired,
  .thps-actions.thps-actions--video.thps-actions--paired {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    width: 100%;
  }

  .thps-actions.thps-actions--overlay.thps-actions--paired .thps-button,
  .thps-actions.thps-actions--overlay.thps-actions--paired .thps-button--tickets,
  .thps-actions.thps-actions--video.thps-actions--paired .thps-button,
  .thps-actions.thps-actions--video.thps-actions--paired .thps-button--tickets {
    width: 100%;
    min-width: 0;
  }

  .thps-slide.is-playing .thps-video-actions-host {
    padding: 14px 14px 18px;
    max-height: 150px;
  }

  .thps-slider[data-thps-show-video-actions="no"] .thps-slide.is-playing .thps-video-actions-host {
    display: none;
  }

  .thps-video-stop {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
  }

  .thps-meta-corner {
    max-width: calc(100% - 32px);
  }

  .thps-slider[data-thps-show-meta-mobile="no"] .thps-meta-inline,
  .thps-slider[data-thps-show-meta-mobile="no"] .thps-meta-corner,
  .thps-slider[data-thps-show-meta-mobile="no"] .thps-action-meta {
    display: none !important;
  }

  .thps-slider[data-thps-hide-meta-primary-mobile="yes"] .thps-meta-label--primary,
  .thps-slider[data-thps-hide-meta-primary-mobile="yes"] .thps-meta-sep--primary {
    display: none;
  }

  .thps-slider[data-thps-meta-position-mobile="content_default"] .thps-meta-inline {
    display: block;
  }

  .thps-slider[data-thps-meta-position-mobile="top_left"] .thps-meta-inline,
  .thps-slider[data-thps-meta-position-mobile="top_right"] .thps-meta-inline,
  .thps-slider[data-thps-meta-position-mobile="bottom_right"] .thps-meta-inline {
    display: none;
  }

  .thps-action-meta {
    display: none !important;
  }

  .thps-slider[data-thps-meta-position-mobile="top_left"] .thps-meta-corner,
  .thps-slider[data-thps-meta-position-mobile="top_right"] .thps-meta-corner,
  .thps-slider[data-thps-meta-position-mobile="bottom_right"] .thps-meta-corner {
    display: block;
  }

  .thps-slider[data-thps-meta-position-mobile="top_left"] .thps-meta-corner {
    top: 16px;
    left: 16px;
    right: auto;
    bottom: auto;
  }

  .thps-slider[data-thps-meta-position-mobile="top_right"] .thps-meta-corner {
    top: 16px;
    right: 16px;
    left: auto;
    bottom: auto;
  }

  .thps-slider[data-thps-meta-position-mobile="bottom_right"] .thps-meta-corner {
    right: 16px;
    bottom: 16px;
    left: auto;
    top: auto;
  }

  .thps-slider[data-thps-dots-style="label"] .thps-dot {
    overflow: visible;
  }

  .thps-slider[data-thps-dots-style="label"] .thps-dot.is-active {
    min-width: 44px;
    height: 28px;
    padding: 0 11px 0 10px;
    overflow: visible;
  }

  .thps-slider[data-thps-dots-style="label"] .thps-dot-label {
    line-height: 1.15;
  }

  .thps-slider[data-thps-dots-style="label"] .thps-dot.is-active .thps-dot-label {
    max-width: 36px;
    overflow: visible;
    line-height: 1.15;
    transform: translateY(-0.5px);
  }

  .thps-title {
    font-size: 18px;
    line-height: 1.1;
    max-height: 84px;
  }

  .thps-title--season-suffix {
    max-height: calc(84px + 0.52em + max(var(--thps-title-season-top-offset, 0px), 0px));
  }

  .thps-button {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .thps-video-trigger {
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
  }

  .thps-nav {
    display: none;
  }
}
