/* Dramatic Wish Slides Update */

/* Make slide content interactive */
.wish-content {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wish-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wish-content:active {
  transform: translateY(-2px);
}

/* Enhanced slide animations */
@keyframes wishSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wishSlideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wishFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes wishBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wishSlideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wishFadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wishSlideInRotate {
  0% {
    opacity: 0;
    transform: translateX(-30px) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

/* Click hint animation */
.click-hint {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* Make the text more prominent */
.wish-text-large p {
  font-size: 1.3em;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhance the icons */
.wish-icon-large {
  transform: scale(1.2);
  transition: transform 0.5s ease;
}

.wish-content:hover .wish-icon-large {
  transform: scale(1.5) rotate(5deg);
}
