@keyframes bounce-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  max-height: 100%;
  max-width: 400px;
}

@media (max-width: 767px) {
  .image-container {
    max-height: 100%;
  }
}

.image-container.bounce-in {
  animation: bounce-in 0.6s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}

.next-button {
  background-color: #e6275d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.rect-container {
  width: 35%;
  height: 5px;
  background-color: #d5dde9;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.active-rect {
  height: 100%;
  width: 33.33%;
  background-color: #678dc2;
  border-radius: 5px;
  position: absolute;
  transition: transform 0.3s ease;
}

.skip-link {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #e6275d;
  font-weight: 500;
  z-index: 1;
}
