.floating-member-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    background: linear-gradient(135deg, #f7bc1a 0%, #EDBE38 100%);
    color: black !important;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(58, 103, 177, 0.3);
    border: none;
    font-weight: 600;
    font-size: 16px;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.floating-member-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 103, 177, 0.4);
    background: linear-gradient(135deg, #2451A0 0%, #1A4087 100%);
    text-decoration: none;
    color: white !important;
}

.floating-member-btn:active {
    transform: translateY(1px);
}

.floating-member-btn .icon {
    font-size: 20px;
}

/* Add animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(58, 103, 177, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(58, 103, 177, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(58, 103, 177, 0.3);
    }
}



/* Mobile responsiveness */
/* Icon animation */
@keyframes shine {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.floating-member-btn .icon {
    animation: wiggle 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .floating-member-btn {
        bottom: 20px;
        right: 85px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
