*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#000;
color:#fff;
text-align:center;
overflow-x:hidden;
}

/* FUNDO */
#bg{
position:fixed;
width:100%;
height:100%;
background-size:cover;
background-position:center;
filter:blur(25px) brightness(.25);
z-index:-1;
}

/* HEADER */
header{
padding:25px;
}

h1{color:#00c3ff;}

.live{
background:red;
padding:5px 12px;
border-radius:20px;
display:inline-block;
margin-top:8px;
font-size:.8rem;
}

/* CARD */
.card{
max-width:380px;
margin:auto;
background:rgba(0,0,0,.55);
padding:20px;
border-radius:20px;
}

/* CAPA */
.cover img{
width:220px;
border-radius:18px;
box-shadow:0 0 20px rgba(0,195,255,.5);
transition:opacity .3s;
}

#artist{
margin-top:15px;
opacity:.9;
}

#title{
font-size:1.4rem;
color:#00c3ff;
margin:8px 0;
min-height:34px;
}

/* EQUALIZER FIXO */
.eq{
display:flex;
justify-content:center;
gap:4px;
margin:15px;
}

.eq div{
width:5px;
height:20px;
background:#00c3ff;
border-radius:3px;
}

/* HISTÓRICO */
#history{
min-height:120px;
}

#history li{
list-style:none;
padding:4px;
font-size:.9rem;
}

/* FOOTER */
.request{
max-width:600px;
margin:25px auto 140px;
background:rgba(0,0,0,.55);
padding:20px;
border-radius:15px;
}

/* PLAYER */
.player{
position:fixed;
bottom:8px;
left:50%;
transform:translateX(-50%);
width:95%;
max-width:520px;
background:rgba(0,0,0,.88);
border-radius:16px;
padding:8px;
display:flex;
align-items:center;
gap:10px;
z-index:999;
}

.mini-cover img{
width:50px;
height:50px;
border-radius:8px;
object-fit:cover;
}

.mini-info{
flex:1;
text-align:left;
min-width:0;
}

#miniTitle{
font-size:.8rem;
margin-bottom:4px;
color:#00c3ff;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}

.player audio{
width:100%;
height:32px;
}

@media (max-width:600px){
.mini-cover img{
width:42px;
height:42px;
}
#miniTitle{
font-size:.75rem;
}
.player audio{
height:28px;
}
}
