/* Expandable Support FAB Button */

.support-fab-container {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999999999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Main Button */
.support-fab-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7d0096 0%, #c51162 100%);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(125, 0, 150, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    width: auto;
}

.support-fab-main:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(125, 0, 150, 0.6);
}

.support-fab-main:active {
    transform: scale(0.98);
}

.support-fab-main-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-fab-main-text {
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

/* Sub Buttons Container */
.support-fab-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.support-fab-container.expanded .support-fab-buttons {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
}

/* Individual Sub Buttons */
.support-fab-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 56px;
    height: 56px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Bale Button - Using Bale's brand color */
.support-fab-item:nth-child(1) {
    background: linear-gradient(135deg, #42c89d 0%, #52d8ad 100%);
    transition-delay: 0.05s;
}

/* Telegram Button - Blue */
.support-fab-item:nth-child(2) {
    background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
    transition-delay: 0.1s;
}

/* WhatsApp Button - Green */
.support-fab-item:nth-child(3) {
    background: linear-gradient(135deg, #25d366 0%, #00e676 100%);
    transition-delay: 0.15s;
}

.support-fab-item:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.support-fab-item:active {
    transform: scale(0.98);
}

.support-fab-icon {
    font-size: 24px;
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* Mobile Responsive */
@media (max-width: 810px) {
    .support-fab-container {
        bottom: 1rem;
        left: 1rem;
    }

    .support-fab-main {
        padding: 0;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        min-width: 56px;
        justify-content: center;
    }

    .support-fab-main-text {
        display: none;
    }

    .support-fab-item {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 0;
        border-radius: 50%;
    }

    .support-fab-item span {
        display: none;
    }

    .support-fab-icon {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}

/* Smooth entrance animation when page loads */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-fab-container {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}
