@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700&display=swap');

:root{
  --yellow:#F2D600;
  --white:rgba(255,255,255,.95);
  --grey:rgba(255,255,255,.55);
  --glass:rgba(15,15,15,.34);
  --line:rgba(255,255,255,.12);
}

/* ---------- Lecteur ---------- */

#loe-radio{
  position:fixed;
  right:28px;
  bottom:28px;
  width:430px;

  font-family:"Barlow",sans-serif;
  color:var(--white);

  background:var(--glass);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);

  border:1px solid var(--line);
  border-radius:28px;

  box-shadow:
    0 20px 70px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);

  overflow:hidden;
  z-index:999999;
}

/* fond pointillé */

#loe-radio::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);

  background-size:12px 12px;
  opacity:.6;
}

#loe-radio>*{
  position:relative;
  z-index:1;
}

/* ---------- Header ---------- */

.head{
  display:flex;
  align-items:center;
  gap:14px;

  padding:18px 22px 8px;
}

.logo{
  width:18px;
  height:auto;
}

.brand{
  flex:1;
}

.radio{
  font-size:29px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.03em;
}

.name{
  margin-top:2px;
  font-size:15px;
  font-weight:400;
  color:var(--grey);
}

.close{
  width:26px;
  height:26px;

  border:none;
  background:none;

  color:rgba(255,255,255,.6);
  font-size:22px;

  cursor:pointer;
}

/* ---------- Corps ---------- */

.body{
  display:flex;
  gap:18px;

  padding:8px 22px 14px;
}

.cover img{
  width:108px;
  height:108px;

  object-fit:cover;
  border-radius:18px;

  box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.meta{
  flex:1;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.artist{
  font-size:11px;
  font-weight:600;
  letter-spacing:.14em;

  color:var(--yellow);
}

.title{
  margin:6px 0 14px;

  font-size:26px;
  font-weight:700;
  line-height:1.05;
}

/* ---------- Barre ---------- */

.bar{
  width:100%;
  height:3px;

  background:rgba(255,255,255,.15);
  border-radius:3px;
}

.fill{
  width:0%;
  height:100%;

  background:var(--yellow);
  border-radius:3px;
}

/* ---------- Titres à venir ---------- */

.queue{
  padding:0 22px 12px;
}

.queue h4{
  margin:0 0 8px;

  font-size:10px;
  font-weight:600;
  letter-spacing:.16em;

  color:var(--grey);
}

.queue div{
  padding:3px 0;

  font-size:13px;
  color:rgba(255,255,255,.78);
}

/* ---------- Boutons ---------- */

.controls{
  display:flex;
  justify-content:center;
  gap:14px;

  padding:8px 0 20px;
}

.controls button{
  width:54px;
  height:54px;

  border:none;
  border-radius:50%;

  background:var(--yellow);
  color:#111;

  font-size:20px;
  font-weight:700;

  cursor:pointer;

  transition:.18s ease;
}

.controls button:hover{
  transform:translateY(-2px) scale(1.03);

  box-shadow:0 0 22px rgba(242,214,0,.35);
}

/* ---------- Pastille ---------- */

#loe-radio.min{
  width:58px;
  height:58px;

  border-radius:50%;
}

#loe-radio.min .head,
#loe-radio.min .body,
#loe-radio.min .queue,
#loe-radio.min .controls{
  display:none;
}

#loe-radio.min .mini{
  display:flex;
  align-items:center;
  justify-content:center;

  width:58px;
  height:58px;

  color:var(--yellow);
  font-size:30px;
}

.mini{
  display:none;
}