.tg-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 24px rgba(99,102,241,.45);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.tg-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99,102,241,.55);
    color: #fff;
}
.tg-widget i { font-size: 20px; flex-shrink: 0; }

@media (max-width: 576px) {
    .tg-widget {
        bottom: 16px;
        left: 16px;
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
    .tg-widget-label { display: none; }
    .tg-widget i { font-size: 22px; }
}