.autoplay-widget {
  border-radius: 16px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.autoplay-widget__container {
  position: relative;
  overflow: hidden;
}

.autoplay-widget__slides {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 20px;
  padding-right: 60px;
  scrollbar-width: none;
}

.autoplay-widget__slides::-webkit-scrollbar {
  display: none;
}

.autoplay-widget__slide {
  flex: 0 0 calc(100% - 60px);
  scroll-snap-align: end;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
}

.autoplay-widget__card {
  position: relative;
  display: flex;
  border: 2px solid #CCDDEB;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  min-height: 250px;
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.autoplay-widget__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.autoplay-widget__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.autoplay-widget__background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.autoplay-widget__content-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 350px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
}

.autoplay-widget__top-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.autoplay-widget__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 94px;
}

.autoplay-widget__logo-img {
  width: 94px;
  height: 94px;
  border-radius: 8px;
}

.autoplay-widget__bonus {
  background-color: #F2F2F2;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  color: #333333;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.autoplay-widget__bonus-offer {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.autoplay-widget__bonus-extra {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 2px;
}

.autoplay-widget__cta {
  display: block;
  background-color: #76B900;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.autoplay-widget__cta:hover {
  background-color: rgb(85.4702702703, 134, 0);
  color: #FFFFFF;
}

.autoplay-widget__bottom-info {
  margin-top: 8px;
  color: #333333;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.3;
  padding: 0 4px;
  opacity: 0.8;
}

.autoplay-widget__navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.autoplay-widget__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.autoplay-widget__nav-btn svg {
  width: 20px;
  height: 20px;
  color: #333333;
}

.autoplay-widget__nav-btn:hover {
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.autoplay-widget__nav-btn--prev {
  left: 15px;
}

.autoplay-widget__nav-btn--next {
  right: 15px;
}

.autoplay-widget__nav-btn--hidden {
  display: none;
}

@media (max-width: 768px) {
  .autoplay-widget__card {
    justify-content: center;
    align-items: flex-end;
    min-height: 420px;
    padding: 12px;
  }
  .autoplay-widget__card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
  }
  .autoplay-widget__content-panel {
    max-width: 100%;
    width: 100%;
  }
  .autoplay-widget__bottom-info {
    margin-top: 8px;
    font-size: 16px;
    text-align: left;
    line-height: 1.4;
  }
  .autoplay-widget__navigation {
    display: none;
  }
  .autoplay-widget.is-mobile-slide {
    border: none;
    border-radius: 0;
    max-width: 100%;
  }
  .autoplay-widget.is-mobile-slide .autoplay-widget__container {
    overflow: hidden;
    padding: 0 20px;
  }
  .autoplay-widget.is-mobile-slide .autoplay-widget__slides {
    padding-bottom: 10px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
  }
  .autoplay-widget.is-mobile-slide .autoplay-widget__slide {
    cursor: grab;
    flex: 0 0 calc(100vw - 80px);
    max-width: 320px;
    scroll-snap-align: start;
  }
  .autoplay-widget.is-mobile-slide .autoplay-widget__slides:active {
    cursor: grabbing;
  }
}

/*# sourceMappingURL=style.css.map */
