/* ==================================================================
   FLOATING DONATE BUTTON
   ================================================================== */

.donate-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
}

.donate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #e63950 100%);
}

.donate-button:active {
    transform: translateY(-1px);
}

/* Heart Icon */
.donate-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    animation: heartbeat 1.5s infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 107, 0.7);
    }
}

/* Heartbeat Animation */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(0.95);
    }
    50%, 60%, 70%, 80%, 90% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .donate-button {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }

    .donate-button svg {
        width: 18px;
        height: 18px;
    }
}

/* Compact version for small screens */
@media (max-width: 480px) {
    .donate-button {
        padding: 12px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .donate-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Hover effect - stop pulse animation */
.donate-button:hover {
    animation: none;
}

.donate-button:hover svg {
    animation: none;
    transform: scale(1.2);
}
