.mlp-promos,
.mlp-promos * {
  box-sizing: border-box;
}

.mlp-promos {
  position: relative;
  padding: 28px clamp(14px, 3vw, 48px) 34px;
  background:
    radial-gradient(circle at 50% -30%, rgba(211, 31, 60, 0.18), transparent 48%),
    #0a0a0b;
  border-bottom: 1px solid rgba(245, 242, 236, 0.1);
}

.mlp-promos__shell {
  position: relative;
  width: min(1600px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 236, 0.16);
  border-radius: 8px;
  background: #050506;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 34px rgba(211, 31, 60, 0.12);
}

.mlp-promos__viewport {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.mlp-promos__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 650ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.mlp-promos__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050506;
}

.mlp-promos__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.mlp-promos__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 6.5s ease;
}

.mlp-promos__slide[aria-hidden="false"] .mlp-promos__image {
  transform: scale(1.035);
}

.mlp-promos__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.68) 35%, rgba(5, 5, 6, 0.08) 68%),
    linear-gradient(180deg, transparent 48%, rgba(5, 5, 6, 0.78) 100%);
  pointer-events: none;
}

.mlp-promos__content {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 84px);
  bottom: clamp(28px, 6vw, 92px);
  width: min(700px, calc(100% - 48px));
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.85);
}

.mlp-promos__content h2 {
  margin: 0;
  color: #f5f2ec;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.mlp-promos__content p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(245, 242, 236, 0.86);
  font-family: "Barlow Semi Condensed", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  line-height: 1.45;
}

.mlp-promos__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 12px 22px;
  border-radius: 3px;
  background: #d31f3c;
  box-shadow: 0 10px 28px rgba(211, 31, 60, 0.34);
  color: #fff;
  font-family: Oswald, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.mlp-promos__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 72px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(5, 5, 6, 0.62);
  backdrop-filter: blur(5px);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mlp-promos__arrow:hover,
.mlp-promos__arrow:focus-visible {
  border-color: rgba(201, 163, 65, 0.85);
  background: rgba(211, 31, 60, 0.9);
  outline: none;
}

.mlp-promos__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.mlp-promos__arrow span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 3rem;
  line-height: 0.8;
  transform: translateY(-2px);
}

.mlp-promos__arrow--prev { left: 18px; }
.mlp-promos__arrow--next { right: 18px; }

.mlp-promos__dots {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(15px, 2.2vw, 32px);
  display: flex;
  gap: 9px;
  align-items: center;
}

.mlp-promos__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.55);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mlp-promos__dot.is-active {
  width: 34px;
  border-color: #c9a341;
  background: #d31f3c;
}

.mlp-promos__dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.mlp-promos__progress {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.mlp-promos__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #d31f3c;
}

.mlp-promos.is-playing .mlp-promos__progress span {
  animation: mlpPromoProgress var(--mlp-autoplay, 6000ms) linear forwards;
}

.mlp-promos-empty {
  margin: 20px auto;
  padding: 14px 18px;
  max-width: 1200px;
  border: 1px dashed #d31f3c;
  color: #fff;
  background: #161619;
  font-family: Arial, sans-serif;
  text-align: center;
}

@keyframes mlpPromoProgress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 760px) {
  .mlp-promos {
    padding: 14px 10px 18px;
  }

  .mlp-promos__shell {
    border-radius: 5px;
  }

  .mlp-promos__arrow {
    width: 40px;
    height: 54px;
  }

  .mlp-promos__arrow span {
    font-size: 2.35rem;
  }

  .mlp-promos__arrow--prev { left: 8px; }
  .mlp-promos__arrow--next { right: 8px; }

  .mlp-promos__content {
    left: 18px;
    bottom: 30px;
    width: calc(100% - 70px);
  }

  .mlp-promos__content h2 {
    font-size: clamp(1.25rem, 7vw, 2.2rem);
    line-height: 1;
  }

  .mlp-promos__content p {
    display: none;
  }

  .mlp-promos__button {
    min-height: 36px;
    margin-top: 12px;
    padding: 9px 13px;
    font-size: 0.66rem;
  }

  .mlp-promos__dots {
    right: 12px;
    bottom: 10px;
    gap: 6px;
  }

  .mlp-promos__dot {
    width: 7px;
    height: 7px;
  }

  .mlp-promos__dot.is-active {
    width: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mlp-promos__track,
  .mlp-promos__image,
  .mlp-promos__progress span {
    transition: none !important;
    animation: none !important;
  }
}
