:root{
  --mrl-bg:#000;
  --mrl-bd:rgba(255,255,255,.15);
  --mrl-tx:#ffffff;
  --mrl-muted:rgba(255,255,255,.85);
  --mrl-accent:#ff0000;
  --mrl-shadow:0 10px 25px rgba(0,0,0,.45);
  --mrl-radius:14px;
  --mrl-h:72px;
}

.mrl-player{
  position:relative;
  z-index:99999;
}

/* barra sticky */
.mrl-bar{
  position:fixed;
  left:0px;
  right:0px;
  bottom:0px;
  height:var(--mrl-h);
  background:var(--mrl-bg);
  backdrop-filter: blur(8px);
  box-shadow:var(--mrl-shadow);
  color:#fff;
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 12px;
}

/* logo */
.mrl-logo{
  width:52px;
  height:52px;
  border-radius:10px;
  background:#111;
  border:1px solid rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 auto;
}

.mrl-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* info radio */
.mrl-main{
  min-width:0;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.mrl-topline{
  display:flex;
  align-items:center;
  gap:8px;
}

.mrl-station{
  font-weight:700;
  font-size:14px;
  color:#ffffff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mrl-live{
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  color:#fff;
  background:var(--mrl-accent);
  padding:3px 7px;
  border-radius:999px;
}

.mrl-now{
  font-size:12px;
  color:#ffffff;
  opacity:.9;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* controles */
.mrl-controls{
  display:flex;
  align-items:center;
  gap:10px;
}

/* botón play */
.mrl-btn{
  width:42px;
  height:42px;
  border-radius:33px;
  border:2px solid rgba(255,255,255,.2);
  background:#111;
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.2s;
}

.mrl-btn:hover{
  background:#222;
}

.mrl-ic{
  width:18px;
  height:18px;
}

/* volumen */
.mrl-vol{
  width:100px;
  accent-color:#ff0000;
}

/* mobile */
@media (max-width:520px){
  .mrl-vol{
    display:none;
  }

  .mrl-bar{
    left:6px;
    right:6px;
    bottom:6px;
  }
}