/* ============================================================
   mascot.css — 栗子吉祥物浮動角色
   ============================================================ */

/* ─── 吉祥物容器 ─── */
.lizi-mascot {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 998;
  cursor: pointer;
  animation: lizi-bounce 2s ease-in-out infinite;
  transition: transform 0.3s;
}
.lizi-mascot:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

/* ─── 吉祥物圖片 ─── */
.lizi-mascot-img {
  width: 80px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  pointer-events: none;
}

/* ─── 彈跳動畫 ─── */
@keyframes lizi-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ─── 手機版調整 ─── */
@media (max-width: 640px) {
  .lizi-mascot {
    bottom: 75px;
    right: 15px;
  }
  .lizi-mascot-img {
    width: 55px;
  }
}
