.global-player{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    background:#020617;
    color:#fff;
    border-radius:24px;
    padding:16px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    z-index:9999;
    box-shadow:0 18px 50px rgba(0,0,0,0.45);
    border:1px solid rgba(255,255,255,0.10);
}

.gp-info{
    display:flex;
    align-items:center;
    gap:15px;
    min-width:0;
}

.gp-logo-wrap{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#0f172a;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.gp-logo{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gp-logo.playing{
    animation:pulseRadio 1s infinite ease-in-out;
}

@keyframes pulseRadio{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

.gp-label{
    font-size:12px;
    color:#94a3b8;
}

.gp-title{
    font-size:17px;
    font-weight:bold;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width:420px;
}

.gp-controls{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.gp-btn{
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    background:#0d6efd;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
}

.gp-btn:hover{
    transform:scale(1.05);
    background:#2563eb;
}

@media(max-width:768px){

    .global-player{
        left:10px;
        right:10px;
        bottom:10px;
        padding:12px 14px;
        border-radius:18px;
        gap:10px;
    }

    .gp-logo-wrap{
        width:48px;
        height:48px;
    }

    .gp-label{
        font-size:11px;
    }

    .gp-title{
        max-width:170px;
        font-size:14px;
    }

    .gp-btn{
        width:46px;
        height:46px;
        font-size:18px;
    }
}










@media(max-width:768px){

    .global-player{
        left:8px;
        right:8px;
        bottom:8px;
        padding:10px 12px;
        border-radius:16px;
    }

    .gp-logo-wrap{
        width:42px;
        height:42px;
    }

    .gp-title{
        max-width:160px;
        font-size:13px;
    }

    .gp-btn{
        width:44px;
        height:44px;
        font-size:17px;
    }
}





