.hero-carousel {
  position: relative;
  width: var(--shell);
  margin: 22px auto 56px;
  isolation: isolate;
}

.hero-carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
  border: 1px solid color-mix(in srgb, var(--surface) 36%, transparent);
  border-radius: 38px 14px 38px 14px;
  box-shadow: 0 28px 70px color-mix(in srgb, var(--ink) 21%, transparent);
}

.hero-carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 650ms cubic-bezier(.22, .78, .24, 1);
}

.hero-carousel[data-active="1"] .hero-carousel-track {
  transform: translateX(-100%);
}

.hero-carousel[data-active="2"] .hero-carousel-track {
  transform: translateX(-200%);
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.hero-slide::before,
.hero-slide::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-slide::before {
  inset: 0;
  opacity: .42;
  background-image: radial-gradient(rgba(255, 255, 255, .7) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.hero-slide::after {
  width: 430px;
  height: 430px;
  right: -110px;
  bottom: -245px;
  border: 64px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}

.hero-slide-catalog {
  background:
    radial-gradient(circle at 86% 15%, rgba(255, 225, 118, .48), transparent 24%),
    linear-gradient(118deg, var(--hero-start), var(--hero-end));
}

.hero-slide-points {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 213, 74, .28), transparent 23%),
    radial-gradient(circle at 62% 110%, color-mix(in srgb, var(--accent-3) 55%, transparent), transparent 38%),
    linear-gradient(118deg, #0a5c62, #15324d 58%, #352e67);
}

.hero-slide-promo {
  background:
    radial-gradient(circle at 84% 17%, rgba(255, 234, 147, .35), transparent 24%),
    linear-gradient(118deg, #c9365f, #e25d48 55%, #ee8b42);
}

.hero-slide-copy {
  position: relative;
  z-index: 4;
  width: 59%;
  max-width: 710px;
  padding: 45px 54px 72px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}

.hero-kicker i {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 9px 0 0 -2px currentColor;
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 680px;
  margin: 0;
  color: inherit;
  font-family: "Fredoka Pelangi", "Trebuchet MS", sans-serif;
  font-size: clamp(42px, 4.55vw, 62px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.035em;
}

.hero-slide h1 em,
.hero-slide h2 em {
  color: #ffe278;
  font-style: normal;
}

.hero-slide-promo h2 em {
  color: #fff0aa;
}

.hero-slide-copy > p {
  max-width: 580px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, .91);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.hero-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 15px 6px 15px 6px;
  box-shadow: 0 12px 24px rgba(35, 30, 46, .18);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 17px 29px rgba(35, 30, 46, .24);
}

.hero-cta-primary {
  color: var(--primary-strong);
  background: #fff;
}

.hero-cta-light {
  color: #173d45;
  background: #fff7da;
}

.hero-slide-promo .hero-cta-light {
  color: #9b2948;
  background: #fff;
}

.hero-cta.active {
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
  background: rgba(38, 30, 50, .36);
}

.hero-stat {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-stat strong {
  color: #fff;
  font-family: "Fredoka Pelangi", "Trebuchet MS", sans-serif;
  font-size: 19px;
  font-weight: 650;
}

.hero-play-scene,
.hero-points-scene,
.hero-promo-scene {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.hero-sun {
  position: absolute;
  top: 42px;
  right: 58px;
  width: 86px;
  height: 86px;
  border: 13px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #ffd853;
  box-shadow: 0 0 0 20px rgba(255, 229, 121, .12);
}

.hero-cloud {
  position: absolute;
  width: 86px;
  height: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .75);
}

.hero-cloud::before,
.hero-cloud::after {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.hero-cloud::before { left: 14px; width: 34px; height: 34px; }
.hero-cloud::after { right: 13px; width: 43px; height: 43px; }
.hero-cloud-one { top: 78px; left: 2%; transform: scale(.78); }
.hero-cloud-two { top: 152px; right: 8%; transform: scale(.62); opacity: .7; }

.hero-rainbow {
  position: absolute;
  right: 4%;
  bottom: 28px;
  width: 330px;
  height: 215px;
  overflow: hidden;
  transform: rotate(-4deg);
}

.hero-rainbow i {
  position: absolute;
  left: 50%;
  bottom: -150px;
  border-style: solid;
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-rainbow i:nth-child(1) { width: 330px; height: 330px; border-width: 32px; border-color: #ffd354; }
.hero-rainbow i:nth-child(2) { width: 270px; height: 270px; border-width: 30px; border-color: #60d1bd; }
.hero-rainbow i:nth-child(3) { width: 214px; height: 214px; border-width: 29px; border-color: #78a8ff; }
.hero-rainbow i:nth-child(4) { width: 160px; height: 160px; border-width: 28px; border-color: #f69cbd; }

.hero-play-card,
.hero-reward-card,
.promo-price-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 42px rgba(37, 38, 64, .22);
  backdrop-filter: blur(8px);
}

.hero-play-card {
  right: 12%;
  bottom: 68px;
  width: 230px;
  padding: 18px 20px;
  border-radius: 24px 8px 24px 8px;
  color: var(--ink);
  transform: rotate(4deg);
}

.hero-play-card small,
.hero-reward-card small,
.promo-price-card small {
  display: block;
  color: var(--primary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
}

.hero-play-card strong,
.hero-reward-card strong {
  display: block;
  margin-top: 3px;
  font-family: "Fredoka Pelangi", "Trebuchet MS", sans-serif;
  font-size: 22px;
}

.hero-play-card span,
.hero-reward-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero-letter {
  position: absolute;
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .46);
  border-radius: 13px;
  color: #fff;
  font-family: "Fredoka Pelangi", sans-serif;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 13px 22px rgba(37, 38, 64, .2);
}

.hero-letter-p { right: 305px; bottom: 56px; background: #677fe1; transform: rotate(-12deg); }
.hero-letter-l { right: 32px; bottom: 96px; background: #1eaa94; transform: rotate(11deg); }

.hero-gift {
  position: absolute;
  right: 14%;
  bottom: 58px;
  width: 205px;
  height: 184px;
  filter: drop-shadow(0 25px 24px rgba(5, 28, 42, .35));
  transform: rotate(3deg);
}

.gift-box,
.gift-lid {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, #ffcf45, #f4a632);
}

.gift-box {
  right: 12px;
  bottom: 0;
  width: 180px;
  height: 130px;
  border-radius: 8px 8px 28px 10px;
}

.gift-lid {
  z-index: 2;
  top: 36px;
  left: 0;
  width: 205px;
  height: 47px;
  border-radius: 14px 6px 10px 6px;
}

.hero-gift::before,
.hero-gift::after {
  position: absolute;
  z-index: 3;
  top: 0;
  width: 61px;
  height: 58px;
  border: 15px solid #ff6878;
  border-radius: 50% 50% 10px 50%;
  content: "";
}

.hero-gift::before { left: 49px; transform: rotate(22deg); }
.hero-gift::after { right: 48px; transform: scaleX(-1) rotate(22deg); }

.hero-gift i {
  position: absolute;
  z-index: 4;
  top: 38px;
  left: 84px;
  width: 38px;
  height: 146px;
  background: #ff6878;
}

.point-coin {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 5px solid #ffe88b;
  border-radius: 50%;
  color: #6d4610;
  background: linear-gradient(135deg, #fff29d, #f5b62e);
  box-shadow: 0 10px 20px rgba(5, 28, 42, .28), inset 0 0 0 3px rgba(255, 255, 255, .35);
  font-family: "Fredoka Pelangi", sans-serif;
  font-weight: 700;
}

.point-coin-one { top: 44px; right: 78px; width: 60px; height: 60px; font-size: 27px; transform: rotate(13deg); }
.point-coin-two { top: 115px; left: 17%; width: 46px; height: 46px; font-size: 21px; transform: rotate(-12deg); }
.point-coin-three { top: 37px; left: 43%; width: 36px; height: 36px; border-width: 3px; font-size: 16px; }

.hero-spark {
  position: absolute;
  color: #fff0a4;
  font-family: "Fredoka Pelangi", sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.spark-one { top: 27px; left: 10%; transform: rotate(18deg); }
.spark-two { top: 102px; right: 4%; transform: rotate(-18deg) scale(.7); }
.spark-three { bottom: 68px; left: 4%; transform: rotate(14deg) scale(.55); }

.hero-reward-card {
  left: 4%;
  bottom: 45px;
  z-index: 6;
  width: 214px;
  padding: 17px 19px;
  border-radius: 22px 7px 22px 7px;
  color: var(--ink);
  transform: rotate(-5deg);
}

.hero-reward-card small { color: #0a777b; }
.hero-reward-card strong { font-size: 20px; }

.promo-burst {
  position: absolute;
  top: 38px;
  right: 52px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 28% 50% 30% 54%;
  color: #a6294b;
  background: #ffe16b;
  box-shadow: 0 15px 25px rgba(101, 34, 42, .2);
  font-family: "Fredoka Pelangi", sans-serif;
  font-size: 47px;
  font-weight: 700;
  transform: rotate(10deg);
}

.promo-price-card {
  width: 270px;
  color: var(--ink);
}

.promo-price-old {
  top: 90px;
  left: 1%;
  padding: 17px 22px 23px;
  border-radius: 22px 8px 22px 8px;
  opacity: .9;
  transform: rotate(-7deg);
}

.promo-price-old strong {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  color: #85757b;
  font-size: 24px;
}

.promo-price-old strong::after {
  position: absolute;
  top: 52%;
  right: -4px;
  left: -4px;
  height: 3px;
  border-radius: 3px;
  background: #db4164;
  content: "";
  transform: rotate(-4deg);
}

.promo-price-new {
  right: 7%;
  bottom: 67px;
  z-index: 3;
  padding: 22px 24px;
  border-radius: 9px 28px 9px 28px;
  transform: rotate(4deg);
}

.promo-price-new small { color: #bd3459; }
.promo-price-new strong { display: block; margin-top: 4px; color: #bd3459; font-family: "Fredoka Pelangi", sans-serif; font-size: 32px; }
.promo-price-new span { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 950; letter-spacing: .1em; }

.promo-tag {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 49px;
  padding: 9px 14px;
  border: 3px solid #fff;
  border-radius: 20px 5px 20px 5px;
  color: #8d2746;
  background: #ffe16b;
  box-shadow: 0 9px 18px rgba(101, 34, 42, .2);
  font-size: 12px;
  font-weight: 950;
  transform: rotate(-7deg);
}

.hero-promo-scene {
  pointer-events: auto;
}

.hero-promo-product {
  position: absolute;
  display: grid;
  width: 292px;
  min-height: 104px;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 13px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px 8px 24px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 18px 34px rgba(89, 30, 47, .24);
  text-decoration: none;
  backdrop-filter: blur(9px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-promo-product:hover,
.hero-promo-product:focus-visible {
  z-index: 8;
  box-shadow: 0 23px 42px rgba(89, 30, 47, .33);
}

.hero-promo-product-1 {
  z-index: 5;
  top: 33px;
  right: 7%;
  transform: rotate(3deg);
}

.hero-promo-product-1:hover,
.hero-promo-product-1:focus-visible { transform: rotate(3deg) translateY(-4px); }

.hero-promo-product-2 {
  z-index: 4;
  top: 156px;
  left: 1%;
  transform: rotate(-4deg);
}

.hero-promo-product-2:hover,
.hero-promo-product-2:focus-visible { transform: rotate(-4deg) translateY(-4px); }

.hero-promo-product-3 {
  z-index: 3;
  right: 2%;
  bottom: 34px;
  transform: rotate(2deg);
}

.hero-promo-product-3:hover,
.hero-promo-product-3:focus-visible { transform: rotate(2deg) translateY(-4px); }

.hero-promo-scene[data-count="1"] .hero-promo-product-1 {
  top: 50%;
  right: 8%;
  width: 320px;
  transform: translateY(-50%) rotate(3deg);
}

.hero-promo-scene[data-count="1"] .hero-promo-product-1:hover,
.hero-promo-scene[data-count="1"] .hero-promo-product-1:focus-visible {
  transform: translateY(calc(-50% - 4px)) rotate(3deg);
}

.hero-promo-photo {
  position: relative;
  display: block;
  height: 84px;
  overflow: hidden;
  border-radius: 17px 5px 17px 5px;
  background: var(--surface-soft);
}

.hero-promo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-promo-photo b {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 4px 6px;
  border-radius: 8px 3px 8px 3px;
  color: #8a2543;
  background: #ffe16b;
  box-shadow: 0 4px 8px rgba(70, 29, 43, .18);
  font-size: 10px;
  font-weight: 950;
}

.hero-promo-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
}

.hero-promo-copy small {
  overflow: hidden;
  color: #bb3457;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-promo-copy strong {
  display: -webkit-box;
  overflow: hidden;
  margin: 2px 0 3px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.hero-promo-copy del {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.hero-promo-copy em {
  color: #bd3459;
  font-family: "Fredoka Pelangi", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.1;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: -21px;
  left: 0;
  display: flex;
  width: max-content;
  min-height: 43px;
  align-items: center;
  gap: 6px;
  margin: auto;
  padding: 5px 7px;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 18px 7px 18px 7px;
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-carousel-controls button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 11px 4px 11px 4px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
}

.hero-carousel-controls button:hover,
.hero-carousel-controls button:focus-visible {
  color: var(--primary-strong);
  background: var(--surface-soft);
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--muted) 32%, transparent);
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.hero-carousel-dots button.is-active {
  width: 27px;
  border-radius: 8px;
  background: var(--primary);
}

.hero-carousel-pause span {
  font-size: 10px;
  letter-spacing: -3px;
  transform: translateX(-1px);
}

.hero-carousel.is-paused .hero-carousel-pause span {
  font-size: 0;
  letter-spacing: 0;
  transform: none;
}

.hero-carousel.is-paused .hero-carousel-pause span::before {
  font-size: 13px;
  content: "\25B6";
}

@media (max-width: 900px) {
  .hero-slide-copy {
    width: 67%;
    padding-right: 20px;
    padding-left: 38px;
  }

  .hero-play-scene,
  .hero-points-scene,
  .hero-promo-scene {
    width: 41%;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(38px, 6.2vw, 52px);
  }

  .hero-play-card { right: 5%; width: 205px; }
  .hero-letter-p { right: 235px; }
  .hero-reward-card { left: -15%; }
  .hero-gift { right: 2%; }
  .promo-price-card { width: 225px; }
  .promo-price-old { left: -22%; }
  .promo-price-new { right: 2%; }
  .hero-promo-product { width: 250px; grid-template-columns: 76px minmax(0, 1fr); }
  .hero-promo-photo { height: 76px; }
  .hero-promo-product-1 { right: 1%; }
  .hero-promo-product-2 { left: -20%; }
  .hero-promo-product-3 { right: -4%; }
}

@media (max-width: 680px) {
  .hero-carousel {
    width: calc(100% - 20px);
    margin-top: 12px;
    margin-bottom: 43px;
  }

  .hero-carousel-viewport {
    border-radius: 25px 9px 25px 9px;
    box-shadow: 0 18px 44px color-mix(in srgb, var(--ink) 18%, transparent);
  }

  .hero-slide {
    min-height: 350px;
  }

  .hero-slide::before {
    opacity: .28;
    mask-image: linear-gradient(180deg, #000, transparent 80%);
  }

  .hero-slide-copy {
    width: 100%;
    max-width: none;
    padding: 25px 20px 66px;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    width: 86%;
    font-size: clamp(32px, 9.4vw, 42px);
    line-height: 1;
  }

  .hero-slide-copy > p {
    width: 82%;
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.42;
  }

  .hero-slide-actions {
    gap: 11px;
  }

  .hero-cta {
    min-height: 43px;
    padding: 0 15px;
    border-radius: 13px 5px 13px 5px;
    font-size: 13px;
  }

  .hero-stat {
    font-size: 10px;
  }

  .hero-stat strong {
    font-size: 15px;
  }

  .hero-play-scene,
  .hero-points-scene,
  .hero-promo-scene {
    z-index: 1;
    top: auto;
    right: -22px;
    bottom: 0;
    width: 48%;
    height: 56%;
    opacity: .82;
  }

  .hero-sun { top: 4px; right: 13px; width: 54px; height: 54px; border-width: 8px; }
  .hero-cloud { display: none; }
  .hero-rainbow { right: -12px; bottom: -35px; width: 205px; height: 155px; transform: rotate(-5deg) scale(.76); }
  .hero-play-card { display: none; }
  .hero-letter { width: 40px; height: 40px; border-width: 3px; font-size: 21px; }
  .hero-letter-p { right: 121px; bottom: 14px; }
  .hero-letter-l { right: 18px; bottom: 34px; }

  .hero-gift { right: 0; bottom: -22px; transform: scale(.68) rotate(3deg); transform-origin: bottom right; }
  .point-coin-one { top: 1px; right: 44px; transform: scale(.72); }
  .point-coin-two { top: 49px; left: 0; transform: scale(.7); }
  .point-coin-three,
  .hero-spark,
  .hero-reward-card { display: none; }

  .promo-burst { top: 8px; right: 30px; width: 61px; height: 61px; font-size: 30px; }
  .promo-price-card { width: 180px; }
  .promo-price-old { display: none; }
  .promo-price-new { right: 0; bottom: 5px; padding: 14px 15px; transform: rotate(5deg) scale(.84); transform-origin: bottom right; }
  .promo-price-new strong { font-size: 23px; }
  .promo-tag { right: 3px; bottom: 4px; transform: rotate(-6deg) scale(.76); }
  .hero-promo-product-2,
  .hero-promo-product-3 { display: none; }
  .hero-promo-product-1,
  .hero-promo-scene[data-count="1"] .hero-promo-product-1 {
    top: auto;
    right: 0;
    bottom: 4px;
    width: 178px;
    min-height: 74px;
    grid-template-columns: 59px minmax(0, 1fr);
    gap: 8px;
    padding: 7px;
    transform: rotate(4deg);
  }
  .hero-promo-product-1:hover,
  .hero-promo-product-1:focus-visible,
  .hero-promo-scene[data-count="1"] .hero-promo-product-1:hover,
  .hero-promo-scene[data-count="1"] .hero-promo-product-1:focus-visible { transform: rotate(4deg) translateY(-3px); }
  .hero-promo-photo { height: 60px; border-radius: 12px 4px 12px 4px; }
  .hero-promo-copy small,
  .hero-promo-copy del { display: none; }
  .hero-promo-copy strong { font-size: 10px; }
  .hero-promo-copy em { font-size: 13px; }

  .hero-carousel-controls {
    bottom: -18px;
    min-height: 38px;
    border-radius: 15px 6px 15px 6px;
  }

  .hero-carousel-controls button {
    width: 29px;
    height: 29px;
  }

  .hero-carousel-dots button {
    width: 8px;
    height: 8px;
  }

  .hero-carousel-dots button.is-active {
    width: 25px;
  }
}

@media (max-width: 390px) {
  .hero-slide {
    min-height: 338px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    width: 96%;
    font-size: 31px;
  }

  .hero-slide-copy > p {
    width: 91%;
  }

  .hero-stat {
    display: none;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-carousel {
    margin-top: 10px;
    margin-bottom: 39px;
  }

  .hero-slide {
    min-height: 282px;
  }

  .hero-slide-copy {
    width: 69%;
    padding: 23px 30px 56px;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: 34px;
  }

  .hero-slide-copy > p {
    margin: 10px 0 13px;
    font-size: 13px;
  }

  .hero-play-scene,
  .hero-points-scene,
  .hero-promo-scene {
    top: 0;
    right: 0;
    bottom: auto;
    width: 37%;
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-track,
  .hero-cta,
  .hero-carousel-dots button {
    transition: none;
  }
}
