/* Position */
.support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}
.support-button {
    font-family: 'Hind Siliguri', 'Baloo Da 2', sans-serif;
    font-weight: 600;
}

/* Gradient Animated Button */
.support-button {
    background: linear-gradient(270deg, #ff4d4d, #ff00cc, #0066ff, #00ffcc);
    background-size: 600% 600%;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: gradientMove 6s ease infinite;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: 0.4s;
}

/* Hover Effect */
.support-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Glow Effect */
.support-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    box-shadow: 0 0 20px #ff00cc, 0 0 40px #0066ff;
    opacity: 0.6;
    z-index: 0;
}

/* Ripple Effect */
.support-button::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 10%, transparent 10%);
    background-size: 20px 20px;
    animation: ripple 4s linear infinite;
    opacity: 0.3;
}

/* Keep text above */
.support-button span,
.support-button {
    position: relative;
    z-index: 2;
}

/* LIVE Badge (Glow + Pulse) */
.live-btn {
    background: #fff;
    color: #ff0000;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 10px red;
    animation: livePulse 1.2s infinite;
}

/* Gradient Animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ripple Animation */
@keyframes ripple {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

/* LIVE Pulse */
@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px red;
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px red;
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px red;
    }
}