.radio-player-wrapper {
    width: 100%;
    height: 75px;
    background: linear-gradient(135deg,#0a2e4f 0%,#0f5132 60%,#198754 100%);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    padding:10px 16px;
    box-shadow:0 20px 40px rgba(0,0,0,0.6);
    position:relative;
    overflow:hidden;
    border-radius:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif
}
.radio-player-wrapper::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 20% 20%,rgba(255,255,255,0.25),transparent 60%);
    mix-blend-mode:screen;
    opacity:.25;
    pointer-events:none
}
.left-block{
    display:flex;
    align-items:flex-start;
    gap:8px;
    min-width:140px;
    z-index:3
}
.live-dot{
    width:9px;
    height:9px;
    border-radius:50%;
    background:#00ff8c;
    box-shadow:0 0 8px #00ff8c;
    flex-shrink:0;
    margin-top:2px
}
.text-info-station{
    line-height:1.1;
    color:#fff;
    font-size:.75rem
}
.text-info-station .name{
    font-weight:600;
    font-size:.8rem;
    display:flex;
    align-items:center;
    gap:.4rem;
    color:#fff;
    line-height:1.1
}
.text-info-station .desc{
    color:#cfeadf;
    font-size:.65rem;
    line-height:1.2
}
.badge-live{
    font-size:.55rem;
    line-height:1;
    letter-spacing:.05em;
    padding:2px 4px
}
.center-block{
    position:relative;
    flex:1 1 auto;
    min-width:0;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 .75rem;
    border-radius:8px;
    z-index:2;
    overflow:hidden
}
.eq-bg{
    position:absolute;
    inset:0;
    opacity:.4;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:4px;
    pointer-events:none;
    filter:drop-shadow(0 0 4px rgba(0,255,140,.5));
    z-index:1;
    padding:8px 0
}
.eq-bar{
    flex:1 0 auto;
    max-width:6px;
    background:linear-gradient(to top,rgba(25,135,84,1) 0%,rgba(0,255,140,1) 70%,rgba(255,255,255,1) 100%);
    border-radius:2px 2px 0 0;
    box-shadow:0 0 8px rgba(0,255,140,.6);
    height:8px;
    transition:height .05s linear
}
.control-layer{
    position:relative;
    z-index:3;
    display:flex;
    align-items:center;
    flex-wrap:nowrap;
    gap:.75rem;
    width:100%;
    min-width:0
}
.btn-play,
.btn-pause{
    width:40px;
    height:40px;
    border-radius:8px;
    background-color:#ffffff;
    color:#0f5132;
    border:0;
    font-size:1rem;
    font-weight:600;
    box-shadow:0 10px 20px rgba(0,0,0,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .15s ease;
    line-height:1;
    padding:0;
    flex-shrink:0
}
.btn-play:hover,
.btn-pause:hover{
    transform:scale(1.05);
    box-shadow:0 14px 24px rgba(0,0,0,.6)
}
.d-none{display:none !important;} /* por si no tienes bootstrap global */

.volume-block{
    display:flex;
    align-items:center;
    gap:.4rem;
    color:#fff;
    font-size:.7rem;
    white-space:nowrap;
    flex-shrink:0
}
.volume-block input[type="range"]{
    width:80px;
    accent-color:#00ff8c;
    cursor:pointer;
    height:4px
}
.nowplaying-block{
    font-size:.7rem;
    color:#fff;
    min-width:100px;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow:hidden;
    line-height:1.2;
    flex:1 1 auto
}
.status-text{
    font-size:.65rem;
    font-weight:500;
    color:#0ff;
    text-shadow:0 0 8px rgba(0,255,255,.8);
    line-height:1.2
}
@media (max-width:480px){
    .text-info-station .desc{display:none}
    .nowplaying-block{display:none}
    .volume-block input[type="range"]{width:60px}
}
