/* 추첨 담당 마스코트 — 여행자랑·공모 게임 페이지 */
.k-lottery-mascot {
  position: relative;
  overflow: hidden;
}
.k-lottery-mascot__art {
  flex-shrink: 0;
  animation: k-lottery-float 2.8s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(15, 118, 110, 0.2));
}
.k-lottery-mascot--violet .k-lottery-mascot__art {
  filter: drop-shadow(0 6px 12px rgba(109, 40, 217, 0.25));
}
@keyframes k-lottery-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.k-lottery-mascot--busy .k-lottery-mascot__art {
  animation: k-lottery-busy 0.6s ease-in-out infinite;
}
@keyframes k-lottery-busy {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
  }
  50% {
    transform: rotate(2deg) scale(1.03);
  }
}
.k-lottery-mascot__sparkle {
  animation: k-lottery-sparkle 1.8s ease-in-out infinite;
}
@keyframes k-lottery-sparkle {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

/* 룰렛 구간용 컴팩트 마스코트 */
.k-lottery-mascot--compact {
  padding: 0.75rem 1rem;
  gap: 0.75rem;
}
.k-lottery-mascot--compact .k-lottery-mascot__art svg {
  max-width: 72px;
}
