#brema-radio-player{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#111827;
    color:#fff;
    z-index:999999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 20px;
    box-shadow:0 -2px 15px rgba(0,0,0,0.4);
    font-family:Arial,sans-serif;
    backdrop-filter:blur(10px);
}

body{
    padding-bottom:90px;
}

.brema-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.live-dot{
    width:12px;
    height:12px;
    background:red;
    border-radius:50%;
    animation:pulse 1s infinite;
}

@keyframes pulse{
    0%{opacity:1;}
    50%{opacity:.3;}
    100%{opacity:1;}
}

.brema-title{
    font-size:16px;
    font-weight:bold;
}

.brema-live{
    font-size:12px;
    color:#9ca3af;
}

#brema-play-btn{
    background:#ef4444;
    color:white;
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    cursor:pointer;
    font-size:20px;
}

#brema-play-btn:hover{
    transform:scale(1.05);
}

@media(min-width:768px){
    #brema-radio-player{
        width:420px;
        left:auto;
        right:20px;
        bottom:20px;
        border-radius:18px;
    }
}
