/* ============================================================
   pc-animation.css - 하트 애니메이션
   ============================================================ */
@keyframes heartFloat {
    0%   { transform: scale(1) translateY(0); opacity: 1; }
    100% { transform: scale(3) translateY(-60px); opacity: 0; }
}
.heart-float {
    position: fixed;
    font-size: 20px;
    pointer-events: none;
    animation: heartFloat .8s ease forwards;
    z-index: 9999;
}
