/* player.css */
#proPlayer{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  height:80px;
  background:#181818;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 15px;
  box-shadow:0 -2px 12px rgba(0,0,0,0.7);
  z-index:999999;
  font-family:Arial,sans-serif;
  color:white;
}

#proPlayer .left{display:flex;align-items:center;gap:10px;}
#proPlayer .cover{width:60px;height:60px;border-radius:50%;background-size:cover;background-position:center;}
#proPlayer .meta{display:flex;flex-direction:column;}
#proPlayer .title{font-weight:bold;font-size:16px;}
#proPlayer .status{font-size:12px;color:#1db954;}

#proPlayer .center button{
  background:#1db954;
  color:white;
  border:none;
  padding:20px;
  border-radius:50%;
  font-size:28px;
  cursor:pointer;
}

#proPlayer .right{display:flex;align-items:center;gap:10px;}
#proPlayer input[type=range]{width:120px;}

.dropdown{position:relative;display:inline-block;}
.dropdown-content{
  display:none;
  position:absolute;
  bottom:90px;
  left:0;
  background:#222;
  min-width:220px;
  overflow:auto;
  box-shadow:0 8px 16px rgba(0,0,0,0.7);
  border-radius:5px;
  max-height:400px;
  transition:all 0.3s ease;
}
.dropdown-content.show{display:block;}
.dropdown-content div{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  cursor:pointer;
  transition:all 0.2s;
}
.dropdown-content div img{
  width:50px;
  height:50px;
  border-radius:50%;
}
.dropdown-content div:hover{background:#1db954;}