  #app-cover {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 75px;
    margin: -4px auto;
    z-index: 10;
  }
  
  #player {
    position: relative;
    height: 100%;
    z-index: 3;
  }
  
  #player-track {
      position: absolute;
    top: 0;
    /* right: 77%; */
    left: 4%;
    padding: 22px 22px 10px 184px;
    background-color: #181818;
    border-radius: 15px 35px 0 0;
    transition: 1.3s ease top;
    z-index: 1;
  }
  
  #player-track.active {
    top: -88px;
  }
  
  #album-name {
    color: #54576f;
    font-size: 17px;
    font-weight: bold;
  }
  
  #track-name {
    color: #acaebd;
    font-size: 13px;
    margin: 2px 0 5px 0;
  }
  
  #track-time {
    height: 12px;
    margin-bottom: 8px;
  }
  
  #current-time {
    float: left;
  }
  
  #track-length {
    float: right;
  }
  
  #current-time,
  #track-length {
    color: transparent;
    font-size: 11px;
    background-color: #ffe8ee;
    border-radius: 10px;
    transition: 0.3s ease all;
  }
  
  #track-time.active #current-time,
  #track-time.active #track-length {
    color: #f86d92;
    background-color: transparent;
  }
  
  #s-area,
  #seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
  }
  
  #s-area {
    background-color: #ffe8ee;
    cursor: pointer;
  }
  
  #ins-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
  }
  
  #s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
  }
  
  #ins-time,
  #s-hover {
    background-color: #3b3d50;
  }
  
  #seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #fd6d94;
    transition: 0.2s ease width;
    z-index: 1;
  }
  
  #player-content {
        position: relative;
    height: 100%;
    background-color: #f0cf04;
    box-shadow: 0 69px 112px #656565;
    border-radius: 28px 25px 0px 0px;
    z-index: 2;
  }
  
  #album-art {
        position: absolute;
    top: -81px;
    width: 130px;
    height: 130px;
    margin-left: 40px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    box-shadow: 0px 0px 0 5px #2d2c2c;
    border-radius: 50%;
    overflow: hidden;
  }
  
  #album-art.active {
    top: -97px;
    box-shadow: 0 0 0 4px #f0cf04, 0 30px 50px -15px #181818;
  }
  
  #album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: #d6dee7;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
  }
  
  #album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
  }
  
  #album-art img.active {
    opacity: 1;
    z-index: 1;
  }
  
  #album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
  }
  
  @keyframes rotateAlbumArt {
    0% {
      transform: rotateZ(0);
    }
    100% {
      transform: rotateZ(360deg);
    }
  }
  
  #buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    font-family: Helvetica;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    background-color: rgba(255, 255, 255, 0.19);
    opacity: 0;
    z-index: 2;
  }
  
  #album-art img,
  #buffer-box {
    transition: 0.1s linear all;
  }
  
  #album-art.buffering img {
    opacity: 0.25;
  }
  
  #album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  
  #album-art.buffering #buffer-box {
    opacity: 1;
  }
  
  #player-controls {
    width: 80px;
    height: 100%;
    float: right;
    overflow: hidden;
  }
  
  .control {
    float: left;
    padding: 12px 0;
  }
  
  .button {
    width: 25px;
    height: 25px;
    padding: 25px;
    background-color: #E67E22;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
  }
  
  .button i {
    color: #fff;
    font-size: 26px;
  }
  
  .button,
  .button i {
    transition: 0.2s ease all;
  }
  
  .button:hover {
    background-color: #fff;
    border: 1px solid #E67E22;
  }
  
  .button:hover i {
    color: #E67E22;
  }
  
  
  
  
  


/* Visualizer container */
.live-visualizer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease;
}

/* يظهر عند التشغيل */
#player-track.active .live-visualizer {
    opacity: 1;
    transform: translateY(0);
}

/* Equalizer bars */
.bars {
    display: flex;
    gap: 4px;
    height: 35px;
    align-items: flex-end;
}

.bars span {
       width: 7px;
    height: 10px;
    background: linear-gradient(to bottom, #f0cf04, #534307);
    border-radius: 9px;
    animation: bounce 1s infinite ease-in-out;
}

/* Delay لكل عمود */
.bars span:nth-child(1) { animation-delay: 0s; }
.bars span:nth-child(2) { animation-delay: .2s; }
.bars span:nth-child(3) { animation-delay: .4s; }
.bars span:nth-child(4) { animation-delay: .6s; }
.bars span:nth-child(5) { animation-delay: .4s; }
.bars span:nth-child(6) { animation-delay: .2s; }
.bars span:nth-child(7) { animation-delay: 0s; }
.bars span:nth-child(8) { animation-delay: .2s; }
.bars span:nth-child(9) { animation-delay: .6s; }
.bars span:nth-child(10) { animation-delay: .2s; }
.bars span:nth-child(11) { animation-delay: .1s; }

/* حركة الاهتزاز */
@keyframes bounce {
    0%, 100% { height: 8px; }
    50% { height: 35px; }
}

/* ON AIR text */
.live-text {
    margin-top: 8px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f0cf04;
    opacity: 0;
    transition: 0.4s ease;
}

/* يظهر النص عند التشغيل */
#player-track.active .live-text {
    opacity: 1;
}








/* Wrapper */
.pro-wave-wrapper {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.4s ease;
}

#player-track.active .pro-wave-wrapper {
    opacity: 1;
}

/* SVG */
.pro-wave-svg {
     width: 100%;
    height: 29%;
    position: fixed;
    bottom: -24px;
    left: 10%;
    right: 10%;

}


#waveBack {
    fill: rgba(255, 80, 0, 0.35);
    filter: blur(4px);
}






#waveFront {
    fill: #f0cf04;
    filter: drop-shadow(0 0 15px #f0cf04) drop-shadow(0 0 33px #f0cf04);
}










