/* Animation für fliegende Herzen beim Liken */
.fb-flying-heart {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    color: #EAB308; /* Filmbrand Gelb/Gold */
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.4));
    animation: fbHeartFlyUp 1.2s cubic-bezier(0.2, 0, 0.2, 1) forwards;
    pointer-events: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@keyframes fbHeartFlyUp {
    0% {
        transform: translate(-50%, -50%) scale(0.3) rotate(0deg);
        opacity: 0;
    }
    15% {
        transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: translate(500px, -600px) scale(2.0) rotate(30deg);
        opacity: 0;
    }
}
