/* Single Telegram Floating Action Button */
.support-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.telegram-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    /* Larger touch target */
    height: 72px;
    background: transparent;
    /* No background */
    border: none;
    box-shadow: none;
    /* No box shadow on container */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 10000;
}

.telegram-fab img {
    width: 100%;
    /* Fill container */
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(92, 45, 145, 0.3));
    /* Shadow on icon itself */
}

.telegram-fab:hover {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    background: transparent;
    border: none;
    box-shadow: none;
}

.telegram-fab:hover img {
    filter: drop-shadow(0 8px 15px rgba(92, 45, 145, 0.5));
}



/* Mobile adjustments */
@media (max-width: 768px) {
    .support-widget {
        bottom: 20px;
        right: 20px;
    }

    .telegram-fab {
        width: 56px;
        height: 56px;
    }

    .telegram-fab img {
        width: 28px;
        height: 28px;
    }
}