:root {
  --home-hero-height: clamp(500px,42.85vw,857px);
  --home-hero-media-ratio: 2000 / 857;
  --home-hero-left-edge: clamp(14px,3vw,56px);
  --home-hero-right-edge: clamp(10px,1.45vw,24px);
  --home-hero-nav-size: clamp(40px,3.15vw,52px);
  --home-hero-nav-side-offset: clamp(8px,1.55vw,22px);
  --home-hero-content-nav-gap: clamp(10px,1.25vw,20px);
  --home-hero-desktop-safe-right: calc(var(--home-hero-nav-size)+var(--home-hero-nav-side-offset)+var(--home-hero-content-nav-gap));
  --home-hero-content-width: clamp(420px,49vw,740px);
  --home-hero-content-max: 820px;
  --home-hero-content-gap: clamp(10px,1.22vw,18px);
  --home-hero-title-width: clamp(360px,40vw,760px);
  --home-hero-title-height: clamp(126px,17.5vw,318px);
  --home-hero-lead-image-width: clamp(280px,30vw,580px);
  --home-hero-lead-image-height: clamp(58px,8.4vw,132px);
  --home-hero-mobile-content-width: 450px;
  --home-hero-mobile-title-width: min(88vw,450px);
  --home-hero-mobile-title-height: clamp(94px,31vw,184px);
  --home-hero-mobile-lead-image-width: min(78vw,360px);
  --home-hero-mobile-lead-image-height: clamp(46px,14vw,96px);
  --home-hero-control-bottom: clamp(16px,2.25vw,34px);
}

.rtp-home-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: clamp(10px,1.35vw,18px);
  width: 100%;
  height: var(--home-hero-height);
  min-height: 500px;
  max-height: 857px;
  box-sizing: border-box;
  padding-block: clamp(54px,7vw,112px) clamp(64px,8vw,124px);
  padding-left: max(var(--home-hero-left-edge),env(safe-area-inset-left));
  padding-right: max(var(--home-hero-right-edge),env(safe-area-inset-right));
  overflow: hidden;
  color: var(--text);
  background: radial-gradient(circle at 18% 18%,color-mix(in srgb,var(--accent-2,#0ea4eb) 24%,transparent),transparent 34%),radial-gradient(circle at 82% 16%,rgba(255,255,255,.10),transparent 28%),linear-gradient(180deg,var(--theme-bg) 0%,color-mix(in srgb,var(--theme-bg) 72%,#000 28%) 100%);
  contain: layout paint style;
  transition: height .32s cubic-bezier(.22,.61,.36,1),min-height .32s cubic-bezier(.22,.61,.36,1),max-height .32s cubic-bezier(.22,.61,.36,1),padding .32s cubic-bezier(.22,.61,.36,1),gap .24s ease,background .24s ease;
}

.rtp-home-hero::before,.rtp-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.rtp-home-hero::before {
  background: linear-gradient(90deg,rgba(var(--theme-bg-rgb),.48) 0%,rgba(var(--theme-bg-rgb),.30) 28%,rgba(var(--theme-bg-rgb),.07) 62%,rgba(var(--theme-bg-rgb),.24) 100%),linear-gradient(180deg,rgba(var(--theme-bg-rgb),.06) 0%,rgba(var(--theme-bg-rgb),.07) 48%,rgba(var(--theme-bg-rgb),.42) 100%),radial-gradient(ellipse at 52% 116%,rgba(0,85,254,.11),transparent 60%);
}

.rtp-home-hero::after {
  top: auto;
  height: min(24%,170px);
  background: linear-gradient(180deg,transparent 0%,color-mix(in srgb,var(--theme-bg) 54%,transparent) 72%,var(--theme-bg) 100%);
}

.rtp-home-hero__poster {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: none;
  transform: translateZ(0);
  transform-origin: center;
  backface-visibility: hidden;
  transition: opacity .46s cubic-bezier(.22,.61,.36,1);
}

.rtp-home-hero__poster.is-active {
  opacity: .82;
}

.rtp-home-hero__poster[hidden],.rtp-home-hero__poster[data-media-empty="true"],.rtp-home-hero__poster:not([src]),.rtp-home-hero__poster[src=""] {
  opacity: 0;
}


.rtp-home-hero.is-media-switching .rtp-home-hero__poster {
  will-change: opacity;
}

.rtp-home-hero__side-fade {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(40vw,560px);
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg,transparent 0%,rgba(var(--theme-bg-rgb),.08) 28%,rgba(var(--theme-bg-rgb),.28) 62%,rgba(var(--theme-bg-rgb),.48) 100%);
  backdrop-filter: blur(7px) saturate(106%);
  -webkit-backdrop-filter: blur(7px) saturate(106%);
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.20) 26%,#000 62%,#000 100%);
  mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.20) 26%,#000 62%,#000 100%);
  transform: none;
  transition: opacity .24s ease;
}

.rtp-home-hero[data-hero-content-active="true"] .rtp-home-hero__side-fade {
  opacity: .72;
}

.rtp-home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--home-hero-content-gap);
  width: min(var(--home-hero-content-width),100%);
  max-width: min(var(--home-hero-content-max),calc(100% - var(--home-hero-left-edge) - var(--home-hero-right-edge)));
  min-height: clamp(250px,27vw,520px);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: 0;
  padding-right: var(--home-hero-desktop-safe-right);
  color: var(--text);
  text-align: center;
  transform: none;
}

.rtp-home-hero__media-text {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 42px rgba(0,0,0,.34));
  pointer-events: none;
  user-select: none;
}

.rtp-home-hero__title-image {
  width: min(100%,var(--home-hero-title-width));
  max-height: var(--home-hero-title-height);
  margin: 0;
}

.rtp-home-hero__lead-image {
  width: min(100%,var(--home-hero-lead-image-width));
  max-height: var(--home-hero-lead-image-height);
  margin: 0;
}

.rtp-home-hero__title {
  position: relative;
  z-index: 1;
  max-width: min(100%,560px);
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(38px,5.4vw,78px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.066em;
  text-wrap: balance;
  text-align: center;
  text-shadow: 0 18px 44px rgba(0,0,0,.38);
}

.rtp-home-hero__lead {
  position: relative;
  z-index: 1;
  max-width: min(48ch,100%);
  margin: 0 auto;
  color: color-mix(in srgb,var(--text,#fff) 86%,transparent);
  font-size: clamp(14px,1.18vw,18px);
  font-weight: 720;
  line-height: 1.44;
  text-wrap: pretty;
  text-align: center;
  text-shadow: 0 10px 26px rgba(0,0,0,.32);
}

.rtp-home-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2px,.48vw,7px);
}

.rtp-home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb,var(--rtpx-button-accent,#2eafff) 84%,white 16%);
  border-radius: var(--button-radius,.5rem);
  color: var(--rtpx-button-accent-text,#fff);
  background: var(--rtpx-button-accent,#2eafff);
  background-image: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .018em;
  line-height: 1.08;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: none;
  outline-color: transparent;
  outline-offset: var(--button-outline-idle,.625rem);
  outline-style: solid;
  outline-width: 0;
  transition: border-color .14s ease,background-color .14s ease,box-shadow .14s ease,color .14s ease,outline-color .14s ease,outline-offset .14s ease,outline-width .14s ease;
}

.rtp-home-hero__button:focus-visible {
  color: var(--rtpx-button-accent-text,#fff);
  border-color: color-mix(in srgb,var(--rtpx-button-accent,#2eafff) 74%,white 26%);
  background: var(--rtpx-button-accent-active,var(--rtpx-button-accent,#2eafff));
  background-image: none;
  outline-color: var(--kdiqx31h,rgba(255,255,255,.35));
  outline-offset: var(--kdiqx353,.1875rem);
  outline-width: var(--kdiqx354,.1875rem);
  outline-style: solid;
  transform: none;
  box-shadow: none;
  filter: none;
}

.rtp-home-hero__button:active {
  transform: none;
  box-shadow: none;
}

.rtp-home-hero__button--primary {
  border-color: color-mix(in srgb,var(--rtpx-button-accent,#2eafff) 84%,white 16%);
  color: var(--rtpx-button-accent-text,#fff);
  background: var(--rtpx-button-accent,#2eafff);
  background-image: none;
}

.rtp-home-hero__button--primary:focus-visible {
  border-color: color-mix(in srgb,var(--rtpx-button-accent,#2eafff) 74%,white 26%);
  color: var(--rtpx-button-accent-text,#fff);
  background: var(--rtpx-button-accent-active,var(--rtpx-button-accent,#2eafff));
  background-image: none;
}

.rtp-home-hero__actions:has(.rtp-home-hero__button[hidden]) {
  gap: 0;
}

.rtp-home-hero__actions:has(.rtp-home-hero__button[hidden]) .rtp-home-hero__button--primary {
  min-width: clamp(156px,13vw,220px);
}

.rtp-home-hero__button[hidden],.rtp-home-hero__lead[hidden] {
  display: none;
}

.rtp-home-hero__title,.rtp-home-hero__lead,.rtp-home-hero__actions,.rtp-home-hero__media-text {
  transition-property: opacity,transform;
  transition-duration: .46s;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

.rtp-home-hero.is-content-switching .rtp-home-hero__title,.rtp-home-hero.is-content-switching .rtp-home-hero__lead,.rtp-home-hero.is-content-switching .rtp-home-hero__actions,.rtp-home-hero.is-content-switching .rtp-home-hero__media-text {
  opacity: 0;
  transform: translate3d(-18px,0,0);
}

.rtp-home-hero [data-aos] {
  opacity: 0;
  transition-property: transform,opacity;
  transition-timing-function: cubic-bezier(.18,.72,.22,1);
  transition-duration: var(--aos-duration,1150ms);
  transition-delay: var(--aos-delay,0);
  backface-visibility: hidden;
}

.rtp-home-hero [data-aos="fade-right"],.rtp-home-hero [data-aos="fade-slide-right"] {
  transform: translate3d(-34px,0,0);
}

.rtp-home-hero [data-aos="fade-left"],.rtp-home-hero [data-aos="fade-slide-left"] {
  transform: translate3d(38px,0,0);
}

.rtp-home-hero [data-aos="fade-left"],.rtp-home-hero [data-aos="fade-slide-up"] {
  transform: translate3d(0,38%,0);
}

.rtp-home-hero [data-aos="fade-down"],.rtp-home-hero [data-aos="fade-slide-down"] {
  transform: translate3d(0,-38%,0);
}

.rtp-home-hero [data-aos="fade-zoom-in"] {
  transform: scale(.92);
}

.rtp-home-hero [data-aos].aos-animate {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
}

.rtp-home-hero[data-autoplay-paused="true"] .rtp-home-hero__dot-progress {
  animation-play-state: paused;
}

.rtp-home-hero__nav.carousel-control.sjyt1d3 {
  --_147h8yx2: var(--home-hero-nav-size);
  --_147h8yx0: transparent;
  --_147h8yx3: var(--carousel-control-bg,rgba(236,237,238,.30));
  --sjyt1d1: var(--carousel-control-bg,rgba(236,237,238,.30));
  --sjyt1d0: var(--kdiqx35s,blur(2rem));
  --_147h8yx4: none;
  position: absolute;
  top: 50%;
  bottom: auto;
  z-index: 7;
  display: flex;
  width: var(--_147h8yx2);
  min-width: var(--_147h8yx2);
  max-width: var(--_147h8yx2);
  height: var(--_147h8yx2);
  min-height: var(--_147h8yx2);
  max-height: var(--_147h8yx2);
  flex: 0 0 var(--_147h8yx2);
  aspect-ratio: 1 / 1;
  border-radius: var(--kdiqx35b,.5rem);
  margin: 0;
  padding: 0;
  transform: translate3d(0,-50%,0);
  translate: none;
  float: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease,visibility .18s ease,outline-color .15s ease,box-shadow .15s ease,background-color .15s ease;
  will-change: auto;
}

@media (pointer:fine) {
  .rtp-home-hero>.rtp-home-hero__nav.carousel-control.sjyt1d3:focus-visible {
    --_147h8yx4: _147h8yx5;
    top: 50%;
    bottom: auto;
    margin: 0;
    outline-color: var(--kdiqx31h,rgba(255,255,255,.35));
    outline-offset: var(--kdiqx353,.1875rem);
    outline-width: var(--kdiqx354,.1875rem);
    outline-style: solid;
    background-color: var(--_147h8yx0);
    box-shadow: 0 0 1rem rgba(0,0,0,.125);
    transform: translate3d(0,-50%,0);
    filter: none;
    translate: none;
  }
}

.rtp-home-hero>.rtp-home-hero__nav--prev.carousel-control.sjyt1d3 {
  left: clamp(10px,1.8vw,28px);
  right: auto;
  inset-inline-start: clamp(10px,1.8vw,28px);
  inset-inline-end: auto;
}

.rtp-home-hero>.rtp-home-hero__nav--next.carousel-control.sjyt1d3 {
  left: auto;
  right: var(--home-hero-nav-side-offset);
  inset-inline-start: auto;
  inset-inline-end: var(--home-hero-nav-side-offset);
}

.rtp-home-hero__nav[hidden],.rtp-home-hero__carousel[hidden],.rtp-home-hero__play[hidden] {
  display: none;
}

.rtp-home-hero__nav:not([hidden]) {
  display: flex;
}

@media (hover:hover) and (pointer:fine) {
  .rtp-home-hero:not([data-hero-count="1"]):not([data-hero-count="0"]):hover .rtp-home-hero__nav:not([hidden]) {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.rtp-home-hero[data-controls-visible="true"] .rtp-home-hero__nav:not([hidden]),.rtp-home-hero:not([data-hero-count="1"]):focus-within .rtp-home-hero__nav:not([hidden]) {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.rtp-home-hero__nav .carousel-control-icon {
  width: clamp(18px,1.35vw,23px);
  height: clamp(18px,1.35vw,23px);
}

.rtp-home-hero__nav.carousel-control.sjyt1d3>.carousel-control-icon {
  transform: translate3d(0,0,0);
}

@media (prefers-reduced-motion:no-preference) {
  .rtp-home-hero__nav.carousel-control.sjyt1d3>.carousel-control-icon {
    animation: var(--_147h8yx4) .1s linear;
  }
}

.rtp-home-hero__carousel {
  --hero-progress-duration: 3000ms;
  --hero-control-dot-w: clamp(15px,1.05vw,20px);
  --hero-control-dot-h: clamp(4px,.34vw,6px);
  --hero-control-dot-active-w: clamp(58px,4.75vw,84px);
  position: absolute;
  z-index: 8;
  left: 50%;
  right: auto;
  bottom: var(--home-hero-control-bottom);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.44rem,.52vw,.66rem);
  max-width: calc(100% - 32px);
  min-height: clamp(34px,2.55vw,42px);
  margin-inline: auto;
  padding: clamp(.24rem,.32vw,.38rem) clamp(.42rem,.5vw,.58rem) clamp(.24rem,.32vw,.38rem) clamp(.54rem,.64vw,.78rem);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.045));
  color: #fff;
  box-shadow: none;
  backdrop-filter: blur(.52rem) saturate(122%);
  -webkit-backdrop-filter: blur(.52rem) saturate(122%);
  transform: translate3d(-50%,0,0);
  transition: opacity .28s cubic-bezier(.22,.61,.36,1),background-color .28s ease,border-color .28s ease;
  isolation: isolate;
  contain: layout paint style;
  backface-visibility: hidden;
}

.rtp-home-hero__carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.025));
  box-shadow: none;
  pointer-events: none;
}

.rtp-home-hero__carousel::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.048);
  box-shadow: none;
  pointer-events: none;
}

.rtp-home-hero__dots {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(.28rem,.36vw,.44rem);
  min-height: clamp(22px,1.55vw,26px);
  max-width: 100%;
  contain: layout paint;
}

.rtp-home-hero__dot {
  position: relative;
  overflow: hidden;
  width: var(--hero-control-dot-w);
  height: var(--hero-control-dot-h);
  min-width: var(--hero-control-dot-w);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
  cursor: pointer;
  transition: width .34s cubic-bezier(.22,.61,.36,1),background-color .28s ease,opacity .28s ease;
  transform: none;
  backface-visibility: hidden;
}

.rtp-home-hero__dot:focus-visible {
  background: rgba(255,255,255,.58);
  outline: none;
}

.rtp-home-hero__dot[aria-current="true"] {
  width: var(--hero-control-dot-active-w);
  background: rgba(255,255,255,.46);
}

.rtp-home-hero__dot-progress {
  position: absolute;
  inset: 0;
  transform-origin: left center;
  transform: scale3d(0,1,1);
  background: linear-gradient(90deg,rgba(255,255,255,.88),rgba(255,255,255,.98));
  border-radius: inherit;
  pointer-events: none;
  will-change: transform;
  animation: rtpHeroDotProgress var(--hero-progress-duration,3000ms) linear forwards;
}

@keyframes rtpHeroDotProgress {
  from {
    transform: scale3d(0,1,1);
  }
  to {
    transform: scale3d(1,1,1);
  }
}

.rtp-home-hero__play.carousel-control.sjyt1d3 {
  --_147h8yx2: clamp(1.22rem,1.18vw,1.5rem);
  position: relative;
  inset: auto;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transform: none;
  translate: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin: 0;
  border-radius: var(--button-radius,.5rem);
  box-shadow: none;
}

.rtp-home-hero__play .carousel-control-icon {
  width: .58rem;
  height: .58rem;
}

.rtp-home-hero__play .carousel-control-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.rtp-home-hero__play .carousel-control-icon svg rect,.rtp-home-hero__play .carousel-control-icon svg path {
  fill: currentColor;
}

.rtp-home-hero[data-hero-count="1"] .rtp-home-hero__nav,.rtp-home-hero[data-hero-count="1"] .rtp-home-hero__carousel {
  display: none;
}

@media (min-width:1024px) {
  .rtp-home-hero__content {
    width: min(50vw,var(--home-hero-content-max));
    padding-right: calc(var(--home-hero-desktop-safe-right)+clamp(4px,.45vw,10px));
  }
  .rtp-home-hero__title-image {
    width: min(100%,clamp(460px,42vw,820px));
    max-height: clamp(170px,20vw,350px);
  }
}

@media (max-width:900px) and (orientation:portrait),(max-width:640px) {
  :root {
    --home-hero-height: clamp(480px,149.333vw,1120px);
    --home-hero-control-bottom: 12px;
  }
  .rtp-home-hero {
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 400px;
    max-height: 1120px;
    padding-inline: max(16px,env(safe-area-inset-left)) max(16px,env(safe-area-inset-right));
    padding-block: 72px 74px;
    padding-block-end: 74px;
    text-align: center;
  }
  .rtp-home-hero::before {
    background: linear-gradient(180deg,rgba(var(--theme-bg-rgb),.05) 0%,rgba(var(--theme-bg-rgb),.18) 42%,rgba(var(--theme-bg-rgb),.62) 100%),radial-gradient(ellipse at 50% 100%,rgba(0,85,254,.10),transparent 62%);
  }
  .rtp-home-hero__poster {
    object-position: center top;
    opacity: 0;
    filter: none;
    transition: opacity .34s cubic-bezier(.22,.61,.36,1);
  }
  .rtp-home-hero__poster.is-active {
    opacity: .90;
  }
  .rtp-home-hero.is-animated .rtp-home-hero__poster {
    transform: scale(1.006);
  }
  .rtp-home-hero__side-fade {
    inset: auto 0 0 0;
    width: 100%;
    height: min(38%,360px);
    background: linear-gradient(180deg,transparent 0%,rgba(var(--theme-bg-rgb),.16) 46%,rgba(var(--theme-bg-rgb),.54) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    -webkit-mask-image: linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 34%,#000 72%,#000 100%);
    mask-image: linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 34%,#000 72%,#000 100%);
  }
  .rtp-home-hero__content {
    width: min(100%,var(--home-hero-mobile-content-width));
    max-width: calc(100% - 28px);
    min-height: 0;
    margin-inline: auto;
    margin-top: auto;
    padding-right: 0;
    text-align: center;
    transform: none;
  }
  .rtp-home-hero__media-text {
    object-position: center;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.34));
  }
  .rtp-home-hero__title-image {
    width: var(--home-hero-mobile-title-width);
    max-height: var(--home-hero-mobile-title-height);
  }
  .rtp-home-hero__lead-image {
    width: var(--home-hero-mobile-lead-image-width);
    max-height: var(--home-hero-mobile-lead-image-height);
  }
  .rtp-home-hero__title {
    max-width: min(14ch,100%);
    margin-inline: auto;
    font-size: clamp(28px,10.2vw,46px);
    line-height: .94;
    letter-spacing: -.056em;
  }
  .rtp-home-hero__lead {
    max-width: min(42ch,100%);
    margin-inline: auto;
    font-size: clamp(10.8px,2.85vw,12.8px);
    line-height: 1.34;
    display: block;
    overflow: visible;
  }
  .rtp-home-hero__actions {
    width: auto;
    max-width: min(100%,320px);
    justify-content: center;
    gap: 6px;
    margin: clamp(8px,2.2vw,14px) auto 0;
    transform: translate3d(0,5px,0);
  }
  .rtp-home-hero__actions:has(.rtp-home-hero__button[hidden]) .rtp-home-hero__button--primary {
    min-width: clamp(150px,48vw,220px);
  }
  .rtp-home-hero__button {
    width: auto;
    min-width: clamp(150px,48vw,220px);
    max-width: min(220px,calc(100vw - 44px));
    min-height: 31px;
    padding-inline: 18px;
    font-size: 9.3px;
    border-radius: var(--button-radius,.5rem);
    box-shadow: none;
  }
  .rtp-home-hero__nav.carousel-control.sjyt1d3 {
    --_147h8yx2: 38px;
  }
  .rtp-home-hero>.rtp-home-hero__nav--prev.carousel-control.sjyt1d3 {
    left: 8px;
    inset-inline-start: 8px;
  }
  .rtp-home-hero>.rtp-home-hero__nav--next.carousel-control.sjyt1d3 {
    right: 6px;
    inset-inline-end: 6px;
  }
  .rtp-home-hero__carousel {
    --hero-control-dot-w: 11px;
    --hero-control-dot-h: 4px;
    --hero-control-dot-active-w: 36px;
    bottom: 12px;
    gap: .32rem;
    min-height: 29px;
    max-width: calc(100% - 26px);
    padding: .18rem .32rem .18rem .44rem;
    border-radius: 999px;
    background: linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.045));
    border-color: rgba(255,255,255,.12);
    box-shadow: none;
    backdrop-filter: blur(.46rem) saturate(116%);
    -webkit-backdrop-filter: blur(.46rem) saturate(116%);
  }
  .rtp-home-hero__dots {
    gap: .26rem;
    min-height: 21px;
  }
  .rtp-home-hero__play.carousel-control.sjyt1d3 {
    --_147h8yx2: 1.18rem;
  }
  .rtp-home-hero__play .carousel-control-icon {
    width: .52rem;
    height: .52rem;
  }
}

@media (max-width:420px) {
  :root {
    --home-hero-height: clamp(460px,149.333vw,640px);
    --home-hero-mobile-content-width: 420px;
    --home-hero-mobile-title-width: min(88vw,400px);
    --home-hero-mobile-title-height: clamp(88px,31vw,170px);
    --home-hero-mobile-lead-image-width: min(80vw,330px);
    --home-hero-mobile-lead-image-height: clamp(44px,14vw,88px);
    --home-hero-control-bottom: 10px;
  }
  .rtp-home-hero {
    gap: 7px;
    min-height: 360px;
    max-height: 640px;
    padding-inline: max(14px,env(safe-area-inset-left)) max(14px,env(safe-area-inset-right));
    padding-block: 66px 68px;
    padding-block-end: 68px;
  }
  .rtp-home-hero__content {
    max-width: calc(100% - 24px);
  }
  .rtp-home-hero__title {
    max-width: min(13.5ch,100%);
    font-size: clamp(24px,9.1vw,36px);
    line-height: .95;
    letter-spacing: -.052em;
  }
  .rtp-home-hero__lead {
    max-width: min(39ch,100%);
    font-size: 10.4px;
    line-height: 1.32;
  }
  .rtp-home-hero__nav.carousel-control.sjyt1d3 {
    --_147h8yx2: 34px;
  }
  .rtp-home-hero__nav .carousel-control-icon {
    width: 17px;
    height: 17px;
  }
  .rtp-home-hero__carousel {
    --hero-control-dot-w: 10px;
    --hero-control-dot-h: 3.8px;
    --hero-control-dot-active-w: 30px;
    max-width: calc(100% - 22px);
    min-height: 27px;
    gap: .22rem;
    padding: .16rem .26rem .16rem .36rem;
  }
  .rtp-home-hero__dots {
    gap: .2rem;
    min-height: 19px;
  }
  .rtp-home-hero__play.carousel-control.sjyt1d3 {
    --_147h8yx2: 1.08rem;
  }
}

@media (max-width:380px) {
  :root {
    --home-hero-mobile-content-width: 360px;
    --home-hero-mobile-title-width: min(90vw,352px);
    --home-hero-mobile-title-height: clamp(82px,31vw,154px);
    --home-hero-mobile-lead-image-width: min(82vw,300px);
    --home-hero-mobile-lead-image-height: clamp(42px,14vw,82px);
    --home-hero-control-bottom: 8px;
  }
  .rtp-home-hero {
    min-height: 344px;
    max-height: 568px;
    padding-inline: max(12px,env(safe-area-inset-left)) max(12px,env(safe-area-inset-right));
    padding-block: 66px 62px;
    gap: 6px;
  }
  .rtp-home-hero__content {
    max-width: calc(100% - 20px);
  }
  .rtp-home-hero__title {
    max-width: min(100%,29ch);
    font-size: clamp(24px,8.2vw,32px);
    line-height: .98;
    letter-spacing: -.045em;
  }
  .rtp-home-hero__lead {
    max-width: min(100%,40ch);
    font-size: 10px;
    line-height: 1.31;
    display: block;
    overflow: visible;
  }
  .rtp-home-hero__actions {
    width: min(100%,280px);
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
  }
  .rtp-home-hero__button {
    min-height: 31px;
    min-width: 0;
    max-width: 100%;
    padding-inline: 13px;
    border-radius: .48rem;
    font-size: 10px;
    letter-spacing: .012em;
    white-space: nowrap;
  }
  .rtp-home-hero__actions:has(.rtp-home-hero__button[hidden]) .rtp-home-hero__button--primary {
    min-width: min(170px,100%);
  }
  .rtp-home-hero__carousel {
    --hero-control-dot-w: 9px;
    --hero-control-dot-h: 3.4px;
    --hero-control-dot-active-w: 27px;
    min-height: 25px;
    padding: .14rem .23rem .14rem .32rem;
  }
  .rtp-home-hero__play.carousel-control.sjyt1d3 {
    --_147h8yx2: 1.02rem;
  }
}

@media (prefers-reduced-motion:reduce) {
  .rtp-home-hero__poster,.rtp-home-hero__button,.rtp-home-hero [data-aos] {
    transition: none;
    animation: none;
  }
  .rtp-home-hero [data-aos] {
    opacity: 1;
    transform: none;
  }
  .rtp-home-hero__dot-progress {
    animation: none;
    transform: scale3d(1,1,1);
  }
}

.rtp-home-hero:not([data-hero-content-ready="true"]) [data-home-hero-title],.rtp-home-hero:not([data-hero-content-ready="true"]) [data-home-hero-lead],.rtp-home-hero:not([data-hero-content-ready="true"]) [data-home-hero-title-image],.rtp-home-hero:not([data-hero-content-ready="true"]) [data-home-hero-lead-image],.rtp-home-hero:not([data-hero-content-ready="true"]) .rtp-home-hero__actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rtp-home-hero [data-home-hero-title-image][hidden],.rtp-home-hero [data-home-hero-lead-image][hidden] {
  display: none;
}

.rtp-home-hero [data-home-hero-primary][hidden],.rtp-home-hero [data-home-hero-secondary][hidden],.rtp-home-hero[data-hero-primary-enabled="false"] [data-home-hero-primary] {
  display: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.rtp-home-hero[data-hero-primary-enabled="true"] [data-home-hero-primary]:not([hidden]) {
  display: inline-flex;
}


/* Pencarian, filter, dan rail provider — berada setelah Rail Kemenangan Terbaru dan tetap terisolasi. */
.home-provider-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  padding-block: 0 clamp(42px, 6vw, 84px);
  overflow: visible;
  color: var(--text);
}

.home-provider-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - clamp(28px, 5vw, 80px)), 1280px);
  margin-inline: auto;
}

.home-provider-toolbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
}

.home-provider-search {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 50px;
  padding-inline: 15px 10px;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 16px;
  color: color-mix(in srgb, var(--text) 58%, transparent);
  background: color-mix(in srgb, var(--theme-container-bg) 68%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-provider-search:hover,
.home-provider-search:focus-within {
  z-index: 7;
  border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 58%, var(--text) 12%);
  color: var(--text);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-provider-search > svg {
  width: 20px;
  height: 20px;
}

.home-provider-search input {
  min-width: 0;
  height: 48px;
  padding: 0 11px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.home-provider-search input::placeholder {
  color: color-mix(in srgb, var(--text) 46%, transparent);
  opacity: 1;
}

.home-provider-search input:disabled {
  cursor: wait;
}

.home-provider-search__clear {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: color-mix(in srgb, var(--text) 65%, transparent);
  background: color-mix(in srgb, var(--text) 8%, transparent);
  cursor: pointer;
}

.home-provider-search__clear[hidden] {
  display: none;
}

.home-provider-search__clear svg {
  width: 17px;
  height: 17px;
}

.home-provider-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  min-height: 50px;
  padding: 0 17px;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 16px;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 68%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.home-provider-filter svg {
  width: 19px;
  height: 19px;
}

.home-provider-filter[aria-expanded="true"] {
  border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 55%, var(--text) 12%);
  background: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 12%, var(--theme-container-bg));
}

.home-provider-filter:disabled {
  opacity: 0.5;
  cursor: wait;
}

.home-provider-filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding: 11px 12px 11px 15px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--theme-container-bg) 62%, transparent);
}

.home-provider-filter-panel[hidden] {
  display: none;
}

.home-provider-filter-panel__label {
  color: color-mix(in srgb, var(--text) 60%, transparent);
  font-size: 12px;
  font-weight: 800;
}

.home-provider-filter-options {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-provider-filter-options button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--text) 68%, transparent);
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.home-provider-filter-options button[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 52%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 16%, transparent);
}

.home-provider-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-block: 20px 12px;
}

.home-provider-kicker,
.home-provider-count {
  margin: 0;
}

.home-provider-kicker {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.home-provider-count {
  margin-top: 4px;
  color: color-mix(in srgb, var(--text) 52%, transparent);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.home-provider-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-provider-controls button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 68%, transparent);
  cursor: pointer;
}

.home-provider-controls button[hidden] {
  display: none;
}

.home-provider-controls button:disabled {
  opacity: 0.32;
  cursor: default;
}

.home-provider-controls svg {
  width: 18px;
  height: 18px;
}

.home-provider-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.home-provider-viewport::-webkit-scrollbar {
  display: none;
}

.home-provider-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(120px, 10vw, 128px);
  align-items: stretch;
  gap: 8px;
  margin: 0;
  padding: 2px 1px 5px;
  list-style: none;
}

.home-provider-item {
  min-width: 0;
  scroll-snap-align: start;
}

.home-provider-button {
  display: grid;
  grid-template-rows: 34px 12px;
  place-items: center;
  align-content: center;
  row-gap: 2px;
  width: 100%;
  height: 64px;
  min-height: 64px;
  padding: 6px 8px 5px;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
  border-radius: 17px;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 70%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-align: center;
}

button.home-provider-button {
  font: inherit;
  cursor: pointer;
}

button.home-provider-button[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--text) 36%, var(--rtpx-button-accent, #2eafff) 64%);
  background: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 25%, var(--theme-container-bg));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.home-provider-logo {
  display: grid;
  place-items: center;
  width: min(82px, 100%);
  height: 34px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 0;
}

.home-provider-logo img {
  display: block;
  width: 34px;
  height: 34px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
}

.home-provider-logo[data-logo-state="ready"] img {
  opacity: 1;
}

.home-provider-logo[data-logo-state="missing"] {
  visibility: hidden;
}

.home-provider-name {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  height: 12px;
  overflow: hidden;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.005em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-provider-item--skeleton {
  pointer-events: none;
}

.home-provider-item--skeleton .home-provider-button {
  border-color: color-mix(in srgb, var(--text) 7%, transparent);
  background: color-mix(in srgb, var(--theme-container-bg) 52%, transparent);
}

.home-provider-item--skeleton .home-provider-logo {
  width: 58px;
  height: 26px;
  overflow: hidden;
  border-radius: 7px;
}

.home-provider-skeleton-name {
  width: 58%;
  height: 8px;
  border-radius: 999px;
}

.home-provider-empty {
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--text) 58%, transparent);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.home-provider-empty[hidden] {
  display: none;
}

.home-provider-filter:focus-visible,
.home-provider-search__clear:focus-visible,
.home-provider-filter-options button:focus-visible,
.home-provider-controls button:focus-visible,
.home-provider-button:focus-visible,
.home-provider-viewport:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 70%, transparent);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .home-provider-filter:not(:disabled):hover,
  .home-provider-search__clear:hover,
  .home-provider-filter-options button:hover,
  .home-provider-controls button:not(:disabled):hover,
  button.home-provider-button:hover {
    border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 38%, var(--text) 12%);
  }
}

@media (max-width: 720px) {
  .home-provider-section {
    padding-block: 0 32px;
  }

  .home-provider-shell {
    width: min(calc(100% - 28px), 560px);
  }

  .home-provider-toolbar {
    gap: 8px;
  }

  .home-provider-search,
  .home-provider-filter {
    min-height: 48px;
    border-radius: 15px;
  }

  .home-provider-filter {
    min-width: 48px;
    width: 48px;
    padding: 0;
  }

  .home-provider-filter span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .home-provider-filter-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-provider-filter-options {
    width: 100%;
  }

  .home-provider-filter-options button {
    flex: 1 1 0;
    padding-inline: 9px;
  }

  .home-provider-list {
    grid-auto-columns: min(31vw, 122px);
    gap: 8px;
  }

  .home-provider-button {
    height: 64px;
    min-height: 64px;
    padding: 6px 8px 5px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .home-provider-list {
    grid-auto-columns: min(34vw, 118px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-provider-search,
  .home-provider-filter,
  .home-provider-filter-options button,
  .home-provider-controls button,
  .home-provider-button {
    transition: none;
  }
}

/* Rail Kemenangan Terbaru — sumber tunggal halaman utama */
.home-wins-section {
  padding-block: clamp(34px, 5.2vw, 72px) clamp(42px, 6vw, 84px);
  overflow: hidden;
  color: var(--text);
}

.home-wins-shell {
  width: min(calc(100% - clamp(28px, 5vw, 80px)), 1280px);
  margin-inline: auto;
}

.home-wins-heading {
  display: block;
  margin-block-end: clamp(18px, 2.5vw, 28px);
}

.home-wins-heading__copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "kicker kicker"
    "title actions"
    "desc desc";
  align-items: center;
  column-gap: clamp(12px, 2.4vw, 24px);
}

.home-wins-kicker {
  grid-area: kicker;
  display: inline-flex;
  align-items: center;
  margin: 0 0 9px;
  color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 84%, white 16%);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-wins-title {
  grid-area: title;
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-wins-description {
  grid-area: desc;
  max-width: 650px;
  margin: 12px 0 0;
  color: color-mix(in srgb, var(--text) 62%, transparent);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 650;
  line-height: 1.55;
  text-wrap: pretty;
}

.home-wins-heading__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: max-content;
  flex-wrap: nowrap;
}


.home-wins-control {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 76%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.home-wins-control svg {
  width: 20px;
  height: 20px;
}

.home-wins-control:disabled {
  opacity: 0.32;
  cursor: default;
}

.home-wins-control:focus-visible,
.home-win-card__link:focus-visible,
.home-wins-all:focus-visible,
.home-wins-viewport:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 72%, transparent);
  outline-offset: 3px;
}

.home-wins-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 1px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.home-wins-viewport::-webkit-scrollbar {
  display: none;
}

.home-wins-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(264px, 24.4vw, 306px);
  align-items: stretch;
  gap: clamp(13px, 1.65vw, 20px);
  margin: 0;
  padding: 2px 1px 5px;
  list-style: none;
}

.home-win-card {
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
  contain: layout paint style;
}

.home-win-card__link {
  --home-win-card-body-size: 172px;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto var(--home-win-card-body-size);
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.02)),
    color-mix(in srgb, var(--theme-container-bg) 80%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(0, 0, 0, 0.11);
  contain: paint;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.home-win-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: color-mix(in srgb, var(--theme-container-bg) 90%, var(--theme-bg));
}

.home-win-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(var(--theme-bg-rgb), 0.44));
}

.home-win-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.home-win-card__body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 9px;
  min-width: 0;
  block-size: var(--home-win-card-body-size);
  padding: 14px 15px;
}

.home-win-card__summary {
  align-self: start;
  display: grid;
  align-content: start;
  gap: 4px;
  min-width: 0;
}

.home-win-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  color: color-mix(in srgb, var(--text) 51%, transparent);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-win-card__eyebrow span,
.home-win-card__eyebrow time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-win-card__eyebrow span {
  flex: 1 1 auto;
}

.home-win-card__eyebrow time {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.home-win-card__title {
  display: -webkit-box;
  max-height: 2.24em;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: clamp(17px, 1.42vw, 20px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-win-card__amount {
  overflow: hidden;
  color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 82%, white 18%);
  font-size: clamp(15px, 1.28vw, 18px);
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-win-card__footer {
  align-self: end;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  color: color-mix(in srgb, var(--text) 63%, transparent);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.home-win-card__footer span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-win-card__footer svg {
  width: 18px;
  height: 18px;
  color: color-mix(in srgb, var(--text) 45%, transparent);
}

.home-win-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: color-mix(in srgb, var(--theme-container-bg) 82%, var(--theme-bg));
}

/* Skeleton mengikuti geometri kartu asli, bukan wrapper status berukuran besar. */
.home-win-card--skeleton {
  pointer-events: none;
  user-select: none;
}

.home-win-card--skeleton .home-win-card__link {
  border-color: color-mix(in srgb, var(--text) 8%, transparent);
  background: color-mix(in srgb, var(--theme-container-bg) 60%, transparent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.home-win-card--skeleton .home-win-card__media {
  background: color-mix(in srgb, var(--theme-container-bg) 72%, var(--theme-bg));
}

.home-win-card--skeleton .home-win-card__media::after {
  height: 34%;
  opacity: 0.42;
}


.home-win-skeleton__meta,
.home-win-skeleton__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-win-skeleton__line {
  height: 10px;
  border-radius: 999px;
}

.home-win-skeleton__line--provider {
  width: 34%;
}

.home-win-skeleton__line--date {
  width: 24%;
}

.home-win-skeleton__summary {
  display: grid;
  align-content: start;
  gap: 9px;
}

.home-win-skeleton__line--title {
  width: 82%;
  height: 18px;
}

.home-win-skeleton__line--title-short {
  width: 58%;
  height: 14px;
}

.home-win-skeleton__line--amount {
  width: 48%;
  height: 15px;
  margin-top: 2px;
}

.home-win-skeleton__footer {
  align-self: end;
  justify-content: flex-start;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--text) 7%, transparent);
}

.home-win-skeleton__avatar {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.home-win-skeleton__line--user {
  width: 42%;
}

.home-win-skeleton__arrow {
  width: 18px;
  height: 18px;
  margin-left: auto;
  border-radius: 6px;
}

.home-wins-status {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  color: color-mix(in srgb, var(--text) 58%, transparent);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}

.home-wins-status[hidden] {
  display: none;
}


.home-wins-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid color-mix(in srgb, var(--text) 13%, transparent);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  background: color-mix(in srgb, var(--theme-container-bg) 72%, transparent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.home-wins-all svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

@media (hover: hover) and (pointer: fine) {
  .home-wins-control:not(:disabled):hover,
  .home-wins-all:hover,
  .home-win-card__link:hover {
    border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 40%, var(--text) 14%);
    background-color: color-mix(in srgb, var(--theme-container-bg) 88%, transparent);
  }
}

@media (max-width: 900px) {
  .home-wins-list {
    grid-auto-columns: min(43vw, 310px);
  }
}

@media (max-width: 640px) {
  .home-wins-section {
    padding-block: 26px 42px;
  }

  .home-wins-shell {
    width: min(calc(100% - 24px), 560px);
  }

  .home-wins-heading {
    margin-block-end: 14px;
  }

  .home-wins-heading__copy {
    column-gap: 10px;
  }

  .home-wins-kicker {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .home-wins-title {
    max-width: none;
    font-size: clamp(24px, 7.4vw, 30px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .home-wins-description {
    max-width: 100%;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .home-wins-heading__actions {
    justify-content: flex-end;
    gap: 0;
  }

  .home-wins-control {
    display: none;
  }

  .home-wins-all {
    min-height: 36px;
    padding: 0 14px;
    gap: 6px;
    font-size: 11px;
  }

  .home-wins-all svg {
    width: 15px;
    height: 15px;
  }

  .home-wins-list {
    grid-auto-columns: min(82vw, 292px);
    gap: 12px;
  }

  .home-win-card__link {
    --home-win-card-body-size: 156px;
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 16px rgba(0, 0, 0, 0.09);
  }

  .home-win-card__body {
    gap: 7px;
    padding: 12px 13px;
  }

  .home-win-card__summary {
    gap: 3px;
  }

  .home-win-card__title {
    font-size: 15px;
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .home-win-card__amount {
    font-size: 15px;
    line-height: 1.12;
  }

  .home-win-card__footer {
    grid-template-columns: 26px minmax(0, 1fr) 16px;
    gap: 8px;
    padding-top: 9px;
    font-size: 10.5px;
  }

  .home-win-card__avatar {
    width: 26px;
    height: 26px;
  }

  .home-win-card__footer svg {
    width: 16px;
    height: 16px;
  }

  .home-win-skeleton__avatar {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .home-wins-list {
    grid-auto-columns: calc(100vw - 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-wins-viewport {
    scroll-behavior: auto;
  }

  .home-wins-control,
  .home-wins-all,
  .home-win-card__link {
    transition: none;
  }
}

/* Katalog rail game halaman utama — satu sumber card untuk empat kategori. */
.home-game-catalog {
  --home-game-card-width: 216px;
  --home-game-card-height: 468px;
  position: relative;
  isolation: isolate;
  padding-block: 0 clamp(54px, 7vw, 96px);
  overflow: hidden;
  color: var(--text);
  touch-action: pan-x pan-y;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.home-game-catalog__shell {
  width: min(calc(100% - clamp(28px, 5vw, 80px)), 1280px);
  margin-inline: auto;
}

.home-game-rail + .home-game-rail {
  margin-top: clamp(38px, 5vw, 66px);
}

.home-game-rail__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.home-game-rail__copy {
  min-width: 0;
}

.home-game-rail__eyebrow,
.home-game-rail__copy h2,
.home-game-rail__copy > p:last-child,
.home-game-status {
  margin: 0;
}

.home-game-rail__eyebrow {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 84%, var(--text));
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-game-rail__copy h2 {
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.home-game-rail__copy > p:last-child {
  margin-top: 5px;
  color: color-mix(in srgb, var(--text) 54%, transparent);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.home-game-rail__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.home-game-rail__controls button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  border-radius: 50%;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 76%, transparent);
  cursor: pointer;
  touch-action: pan-x pan-y;
}

.home-game-rail__controls button[hidden] {
  display: none;
}

.home-game-rail__controls button:disabled {
  opacity: .3;
  cursor: default;
}

.home-game-rail__controls svg {
  width: 18px;
  height: 18px;
}

.home-game-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  -webkit-user-select: none;
  user-select: none;
}

.home-game-viewport::-webkit-scrollbar {
  display: none;
}

.home-game-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--home-game-card-width);
  align-items: stretch;
  gap: 12px;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 2px 2px 7px;
  list-style: none;
}

.home-game-item {
  width: var(--home-game-card-width);
  min-width: var(--home-game-card-width);
  max-width: var(--home-game-card-width);
  content-visibility: auto;
  contain-intrinsic-size: 216px 468px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-game-card {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: var(--home-game-card-width);
  min-width: var(--home-game-card-width);
  max-width: var(--home-game-card-width);
  height: var(--home-game-card-height);
  min-height: var(--home-game-card-height);
  max-height: var(--home-game-card-height);
  overflow: hidden;
  contain: layout paint style;
  border: 1px solid color-mix(in srgb, var(--text) 11%, transparent);
  border-radius: 20px;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-container-bg) 78%, var(--theme-bg));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 16px 38px rgba(0, 0, 0, .11);
  touch-action: pan-x pan-y;
}

.home-game-rail[data-loading="true"] .home-game-item:not(.home-game-item--skeleton) {
  opacity: .68;
  pointer-events: none;
}

.home-game-media {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 var(--home-game-card-width);
  width: 100%;
  height: var(--home-game-card-width);
  min-height: var(--home-game-card-width);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background: color-mix(in srgb, var(--theme-bg) 78%, #0b0d11);
}

.home-game-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 72%, rgba(255, 255, 255, .055), transparent 54%);
}

.home-game-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 46% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 12, .94));
}

.home-game-media__reflection {
  position: absolute;
  z-index: 0;
  inset: 14% 5% -10%;
  pointer-events: none;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(18%) scale(.94);
  filter: blur(17px) saturate(1.45) brightness(.9);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .16) 72%, transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), rgba(0, 0, 0, .16) 72%, transparent);
}

.home-game-media[data-reflection-state="ready"] .home-game-media__reflection {
  opacity: .54;
}

.home-game-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  background: transparent;
  filter: drop-shadow(0 11px 16px rgba(0, 0, 0, .28));
  -webkit-user-drag: none;
  user-select: none;
}

.home-game-media[data-image-state="ready"] img,
.home-game-media[data-image-state="fallback"] img {
  opacity: 1;
}

.home-game-media__caption {
  position: absolute;
  z-index: 3;
  inset: auto 12px 10px;
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #fff;
  text-align: left;
}

.home-game-media__caption strong,
.home-game-media__caption span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-game-media__caption strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.home-game-media__caption span {
  color: rgba(255, 255, 255, .66);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-game-progress {
  flex: 0 0 auto;
  padding: 12px 13px 10px;
}

.home-game-progress__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}

.home-game-progress__heading span {
  color: color-mix(in srgb, var(--text) 56%, transparent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-game-progress__heading strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.home-game-progress__track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 9%, transparent);
}

.home-game-progress__track span {
  display: block;
  width: var(--game-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 74%, #28c7ff), var(--rtpx-button-accent, #2eafff));
}

.home-game-card[data-progress-tier="max"] .home-game-progress__heading strong {
  color: #58d99f;
}

.home-game-card[data-progress-tier="high"] .home-game-progress__heading strong {
  color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 74%, #fff);
}

.home-game-patterns {
  display: grid;
  flex: 0 0 auto;
  gap: 6px;
  padding: 0 13px 12px;
}

.home-game-pattern {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 8px 5px 6px;
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--theme-bg) 52%, transparent);
}

.home-game-pattern__index {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 86%, #fff);
  background: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 15%, transparent);
  font-size: 9px;
  font-weight: 900;
}

.home-game-pattern strong {
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-game-pattern small {
  max-width: 72px;
  overflow: hidden;
  color: color-mix(in srgb, var(--text) 46%, transparent);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-game-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding: 0 13px 13px;
}

.home-game-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
  text-decoration: none;
  touch-action: pan-x pan-y;
  -webkit-tap-highlight-color: transparent;
}

.home-game-action--pattern {
  border-color: color-mix(in srgb, var(--text) 13%, transparent);
  color: var(--text);
  background: color-mix(in srgb, var(--text) 6%, transparent);
}

.home-game-action--main {
  color: #fff;
  background: var(--rtpx-button-accent, #2eafff);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 24%, transparent);
}

.home-game-pager {
  display: grid;
  grid-template-columns: minmax(104px, auto) minmax(0, 1fr) minmax(104px, auto);
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px;
  border: 1px solid color-mix(in srgb, var(--text) 8%, transparent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--theme-container-bg) 54%, transparent);
}

.home-game-pager[hidden] {
  display: none;
}

.home-game-pager__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-radius: 10px;
  color: var(--text);
  background: color-mix(in srgb, var(--theme-bg) 54%, transparent);
  font-size: 9px;
  font-weight: 850;
  cursor: pointer;
  touch-action: pan-x pan-y;
  -webkit-tap-highlight-color: transparent;
}

.home-game-pager__button:disabled {
  opacity: .34;
  cursor: default;
}

.home-game-pager__button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.home-game-pager__status {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: center;
}

.home-game-pager__status strong,
.home-game-pager__status small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-game-pager__status strong {
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.home-game-pager__status small {
  color: color-mix(in srgb, var(--text) 48%, transparent);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.home-game-status {
  padding: 18px 8px 0;
  color: color-mix(in srgb, var(--text) 52%, transparent);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.home-game-status[hidden] {
  display: none;
}

.home-game-item--skeleton .home-game-card {
  padding: 10px;
  pointer-events: none;
}

.home-game-skeleton-media {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 196px;
  border-radius: 14px;
}

.home-game-skeleton-line {
  display: block;
  width: 100%;
  height: 32px;
  margin-top: 7px;
  border-radius: 9px;
}

.home-game-skeleton-line--progress {
  height: 20px;
  margin-top: 11px;
}

.home-game-skeleton-actions {
  display: block;
  width: 100%;
  height: 39px;
  margin-top: auto;
  border-radius: 11px;
}

.home-game-rail__controls button:focus-visible,
.home-game-viewport:focus-visible,
.home-game-action:focus-visible,
.home-game-pager__button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 68%, transparent);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .home-game-rail__controls button:not(:disabled):hover,
  .home-game-action--pattern:hover,
  .home-game-pager__button:not(:disabled):hover {
    border-color: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 42%, var(--text) 12%);
  }

  .home-game-action--main:hover {
    background: color-mix(in srgb, var(--rtpx-button-accent, #2eafff) 88%, #fff);
  }
}

@media (max-width: 720px) {
  .home-game-catalog {
    padding-block: 0 58px;
  }

  .home-game-catalog__shell {
    width: min(calc(100% - 24px), 560px);
  }

  .home-game-rail + .home-game-rail {
    margin-top: 36px;
  }

  .home-game-rail__heading {
    align-items: center;
    margin-bottom: 11px;
  }

  .home-game-rail__eyebrow {
    margin-bottom: 4px;
    font-size: 8px;
  }

  .home-game-rail__copy h2 {
    font-size: 17px;
    line-height: 1.15;
  }

  .home-game-rail__copy > p:last-child {
    display: none;
  }

  .home-game-rail__controls {
    display: none;
  }

  .home-game-list {
    gap: 10px;
    padding-bottom: 5px;
  }

  .home-game-card {
    border-radius: 18px;
  }

  .home-game-pager {
    gap: 7px;
    margin-top: 9px;
    padding: 6px;
    border-radius: 12px;
  }

  .home-game-pager__button {
    min-width: 90px;
    min-height: 34px;
    padding-inline: 8px;
  }

  .home-game-pattern small {
    max-width: 62px;
  }
}

@media (max-width: 390px) {
  .home-game-pattern {
    grid-template-columns: 20px minmax(0, 1fr);
  }

  .home-game-pattern small {
    display: none;
  }

  .home-game-pager {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .home-game-pager__button {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .home-game-pager__button span {
    display: none;
  }
}

html.is-mobile-low-end-runtime .home-game-media__reflection,
html.is-save-data-runtime .home-game-media__reflection {
  opacity: .24;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-game-progress__track span,
  .home-game-rail__controls button,
  .home-game-action,
  .home-game-media img,
  .home-game-pager__button {
    transition: none;
  }
}
