/* ==========================================================================
   Wash 模板 — 签到系统样式
   ========================================================================== */

/* --- 积分飘字动画 --- */
.wash-points-float {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent);
  font-size: .875rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  animation: wash-float-up 1.5s ease forwards;
}

@keyframes wash-float-up {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px);
  }
}

/* --- 签到按钮签到成功弹跳 --- */
.wash-checkin-btn.signed {
  animation: wash-bounce .5s ease;
}

@keyframes wash-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
