/* Page 4 动画样式 */
.page4 .nested-swiper .swiper-slide.animate-active {
  opacity: 1 !important;
}

.page4 .nested-swiper .swiper-slide.animate-active .Illustration {
  transform: translate(-50%, -50%) !important;
  opacity: 1 !important;
  animation: character-entrance 0.8s ease-out forwards;
}

/* 角色入场动画 */
@keyframes character-entrance {
  0% {
    transform: translate(-100%, -100%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
} 