/* Event Country CLEAR full hero section background slider */
.ecx-hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #111827 !important;
}

#ecxHeroImage.ecx-hero-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background-color: #111827 !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

/* Remove the dark fade overlay completely */
.ecx-hero-overlay,
#ecxHeroImage::after,
#ecxHeroImage::before {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}

/* Keep content above the background image */
.ecx-hero-content,
.ecx-hero-copy,
.ecx-hero-side {
  position: relative !important;
  z-index: 2 !important;
}

/* The actual slider layers */
#ecxHeroImage .ecx-section-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #111827;
}

#ecxHeroImage .ecx-section-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.045);
  transition:
    opacity 1300ms ease,
    transform 5800ms ease;
  will-change: opacity, transform;
}

#ecxHeroImage .ecx-section-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Small dots only, no dark panel */
#ecxHeroImage .ecx-section-bg-dots {
  position: absolute;
  left: clamp(18px, 7vw, 100px);
  bottom: 22px;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

#ecxHeroImage .ecx-section-bg-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition: width 250ms ease, background 250ms ease;
}

#ecxHeroImage .ecx-section-bg-dots button.is-active {
  width: 26px;
  background: #ffffff;
}

/* Make glass cards readable without darkening the image */
.ecx-search-panel,
.ecx-location-card,
.ecx-app-card,
.ecx-live-pill,
.ecx-hero-trust {
  backdrop-filter: blur(16px);
}

@media (max-width: 760px) {
  #ecxHeroImage .ecx-section-bg-slide {
    background-position: center center;
  }

  #ecxHeroImage .ecx-section-bg-dots {
    left: 18px;
    bottom: 16px;
  }
}
