#support-widget{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 360px;
    z-index: 999999;
    font-family: 'Inter', sans-serif;

    /* Показываем сразу */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-card{
    position: relative;
    border-radius: 22px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.6);
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.18);
}

.support-card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,#00C853,#00BCD4);
}

.support-body{
    padding: 24px;
}

.close-widget{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #f3f5f7;
    font-size: 20px;
    transition: .2s;
}

.close-widget:hover{
    background: #e6e9ee;
}

.support-top{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.avatar{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00C853,#00BCD4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.support-title{
    font-size: 21px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.online{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 12px #34d399;
    animation: pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(.8);}
    50%{transform:scale(1.3);}
    100%{transform:scale(.8);}
}

.support-text{
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 22px;
}

.action{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: .25s;
}

.action:hover{
    transform: translateY(-2px);
}

.telegram{
    background: #229ED9;
    color: #fff;
}

.phone{
    background: #16a34a;
    color: #fff;
}

.footer{
    margin-top: 8px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

.avatar i{
    font-size:28px;
    color:#fff;
}

.action{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.action i{
    font-size:18px;
    color:#fff;
}

@media (max-width:480px){
    #support-widget{
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
    }
}