.mc-hero {
  position: relative;
  background: #030406;
  overflow: hidden;
}

.mc-hero-fullscreen {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  border-radius: 0;
  --mc-hero-current-height: var(--mc-hero-fullscreen-height, 500px);
  height: var(--mc-hero-current-height);
}

.mc-hero-slides {
  position: relative;
  min-height: var(--mc-hero-current-height);
}

.mc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.mc-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.mc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}

.mc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.64) 24%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.64) 78%, rgba(0, 0, 0, 0.96) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.56) 18%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.58) 82%, rgba(0, 0, 0, 0.98) 100%);
}

.mc-hero-content {
  position: relative;
  z-index: 3;
  min-height: var(--mc-hero-current-height);
  display: flex;
  align-items: center;
  padding: clamp(84px, 14%, 98px) clamp(20px, 4vw, 56px) clamp(44px, 10%, 66px);
}

.mc-hero-inner {
  width: min(680px, 92vw);
  margin-left: clamp(8px, 8vw, 240px);
}

.mc-hero-rating {
  margin: 0 0 14px;
  color: #f2f4f7;
  font-size: 18px;
}

.mc-hero-star {
  color: #ffd84d;
}

.mc-hero-logo-wrap {
  margin: 0 0 18px;
}

.mc-hero-logo {
  width: 200px;
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.mc-hero-title {
  margin: 0 0 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(34px, 6vw, 74px);
  line-height: 0.95;
}

.mc-hero-chips,
.mc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mc-hero-chips {
  margin: 0 0 14px;
}

.mc-hero-chip,
.mc-hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(22, 22, 24, 0.46);
  backdrop-filter: blur(2px);
  font-size: 14px;
  font-weight: 700;
}

.mc-hero-desc {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.48;
  max-width: 640px;
}

.mc-hero-tags {
  margin: 0 0 24px;
}

.mc-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}

.mc-hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #e71b2b 0%, #cc0f20 100%);
  box-shadow: 0 12px 24px rgba(217, 18, 40, 0.28);
}

.mc-hero-btn-play {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  line-height: 1;
  padding-left: 1px;
}

.mc-hero-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(9, 10, 14, 0.42);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.mc-hero-nav span {
  font-size: 42px;
  line-height: 1;
  margin-top: -3px;
}

.mc-hero-prev {
  left: 28px;
}

.mc-hero-next {
  right: 28px;
}

.mc-hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(10px, 3.2%, 22px);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mc-hero-dot {
  position: relative;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  margin: 0 !important;
  border-radius: 999px;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.mc-hero-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.mc-hero-dot.is-active::before {
  width: 24px;
  margin-left: -12px;
  border-radius: 99px;
  background: #fff;
}

body.mc-hero-menu-transparent #header.main {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: transparent !important;
  box-shadow: none !important;
}

body.mc-hero-menu-transparent #header.main .hbox {
  background: transparent !important;
}

body.mc-hero-menu-transparent .mc-hero-fullscreen {
  margin-top: -74px;
}

@media (max-width: 1024px) {
  .mc-hero-fullscreen {
    margin-top: -64px;
  }

  .mc-hero-content {
    padding: 102px 20px 98px;
    align-items: flex-end;
  }

  .mc-hero-inner {
    margin-left: 8px;
    width: min(620px, 100%);
  }

  .mc-hero-nav {
    width: 48px;
    height: 48px;
  }

  .mc-hero-nav span {
    font-size: 34px;
  }

  .mc-hero-prev {
    left: 12px;
  }

  .mc-hero-next {
    right: 12px;
  }
}

@media (max-width: 760px) {
  /* On mobile the hero must stay below the responsive header/search */
  body.mc-hero-menu-transparent .mc-hero-fullscreen,
  .mc-hero-fullscreen {
    margin-top: 0 !important;
  }

  body.mc-hero-menu-transparent .fixheadresp {
    position: relative !important;
    top: auto !important;
    width: auto !important;
    z-index: 60 !important;
  }

  body.mc-hero-menu-transparent .fixheadresp header.responsive {
    background: #000 !important;
  }

  .mc-hero-fullscreen {
    --mc-hero-current-height: var(--mc-hero-fullscreen-height, 500px);
    height: var(--mc-hero-current-height);
    box-shadow: inset 10px 0 16px #000, inset -10px 0 16px #000;
    position: relative;
  }

  /* Hard-mask mobile side leaks (subpixel/anti-alias artifacts) */
  .mc-hero-fullscreen::before,
  .mc-hero-fullscreen::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #000;
    z-index: 6;
    pointer-events: none;
  }

  .mc-hero-fullscreen::before {
    left: 0;
  }

  .mc-hero-fullscreen::after {
    right: 0;
  }

  .mc-hero-slides,
  .mc-hero-content {
    min-height: var(--mc-hero-current-height);
  }

  .mc-hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.82) 7%, rgba(0, 0, 0, 0.28) 20%, rgba(0, 0, 0, 0.28) 80%, rgba(0, 0, 0, 0.82) 93%, rgba(0, 0, 0, 1) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.62) 16%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.62) 84%, rgba(0, 0, 0, 0.99) 100%);
  }

  .mc-hero-content {
    padding: 42px 16px 74px !important;
    align-items: flex-start;
  }

  .mc-hero-inner {
    margin-left: 4px !important;
  }

  .mc-hero-rating {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .mc-hero-logo {
    width: 180px;
    height: 64px;
  }

  .mc-hero-title {
    font-size: clamp(30px, 12vw, 52px);
  }

  .mc-hero-chip,
  .mc-hero-tag {
    font-size: 13px;
    padding: 6px 11px;
  }

  .mc-hero-desc {
    margin: 10px 0 12px;
  }

  .mc-hero-btn {
    height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }

  .mc-hero-btn-play {
    font-size: 12px;
  }

  .mc-hero-nav {
    display: none;
  }

  .mc-hero-nav span {
    font-size: 28px;
    margin-top: -2px;
  }

  .mc-hero-prev {
    left: 10px;
  }

  .mc-hero-next {
    right: 10px;
  }

  .mc-hero-dots {
    bottom: 16px;
  }
}

@media (min-width: 761px) {
  body.mc-hero-menu-transparent .fixheadresp {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 51;
  }

  body.mc-hero-menu-transparent .fixheadresp header.responsive {
    background: rgba(0, 0, 0, 0.22) !important;
  }
}
