:root{
    --accent: #b88bffcc;
    --hovclik: #ffffff;
    --accent2: #23232395;
}
body,html{
    margin: 0;
    padding: 0;
    background-color: #242424;
}
*{ /* or scroll */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE 10+ */
}
*::-webkit-scrollbar {
  display: none;               /* Chrome, Safari */
}
.playerContain{
    margin-top: 4vh;
    margin-bottom: 2vh;
    margin-left: 25vw;
    width: 50vw;
    height: 90vh; 
    position: relative;
}
.glow{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image:linear-gradient(45deg, #873AB7, #1AC72E);
    /*background-image:url(testcover.png); */
    filter: blur(20px);
    background-size: cover;        /* Fill the box, crop excess */
    background-position: center;   /* Keep center visible */
    background-repeat: no-repeat;
    z-index: 1;
}
@keyframes glower {
    0%{
        filter: blur(20px);
    }
    50%{
        filter: blur(25px);
    }
    100%{
        filter: blur(20px);
    }
}
.coverArt{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(45deg, #873AB7, #1AC72E);
    /*background-image:url(testcover.png);*/ 
    background-size: cover;        /* Fill the box, crop excess */
    background-position: center;   /* Keep center visible */
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: 2;
}
.bean{
    position: absolute;
    width: 90%;
    height: 15vh;
    background-color: #232323be;
    z-index: 3;
    left: 5%;
    backdrop-filter: blur(5px);
    border-radius: 7.5vh;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.4);
}
.topbean{
    position: absolute;
    height: 10vh;
    z-index: 5;
    top: 1vh;
}
.bottombean{
    position: absolute;
    bottom: 3vh;
}
.fullSizedFlex{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.controlBtn{
    width: 50px;
    max-height: 60px;
    min-height: 30px;
    background-color: var(--accent);
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
  
     /* Safari */
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center; 
    transition: all 0.3s ease;
}
.controlBtn:hover{
    background-color: var(--hovclik);
    cursor: pointer;
}
.controlBtn.active {
  background-color: var(--hovclik); /* green */
}
.flexdiv{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bgbar{
    position: absolute;
    height: 10px;
    width: 90%;
    left: 5%;
    top: 25%;
    background-color: #20042d30;
    border-radius: 5px;
}
.topbar{
    position: absolute;
    height: 10px;
    width: 30%;
    left: 5%;
    top: 25%;
    background-color: var(--accent);
    border-radius: 5px; 
    transition: all 0.3s ease;
}
.topbar:hover{
    background-color: var(--hovclik);
}
.reabso{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.textCont{
    width: 62%;
    height: 75%;
    margin-top: 0%;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.holder{
    width: 33%;
    margin-right: 5%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.dataPanle{
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
    width: 92%;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #232323be;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    z-index: 4;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 20px 10px #232323be;
    padding-top: 13.5vh;
    padding-left: 8%;
    overflow-y: scroll;
    display: none;
    pointer-events: none;
}
.dataPanle.show{
    display: block;
}
.dataPanle.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.song{
    width: 90%;
    padding: 1%;
    border-radius: 20px;
    position: relative;
    /*backdrop-filter: blur(0px);*/
    background-color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: row;
    gap: 30px;

}
.song:hover{
    background-color: #23232395;
    /*backdrop-filter: blur(5px);*/
}
.albumArt{
    background-size: cover;        /* Fill the box, crop excess */
    background-position: center;   /* Keep center visible */
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.nameHolder{
    /*position: absolute;
    top: 10%;
    left:80px;*/
    display: flex;
    align-items: right;   /* Vertical centering */
    justify-content: center;
    flex-direction: column;
    padding-top: 1%;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
.time{
    position: absolute;
    top: -15%;
    right:20px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}
.middleBean{
    top: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
.middleBean.show{
    display: flex;
}
.middleBean.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.folderAdder{
    width: 80%;
    height: 50%;
    border: none;
    border-radius: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.folderAdder:hover{
    cursor: pointer;
    background-color: #23232395;
    transform: scale(1.1);
}
#seek{
    width: 90%;
    height: 10px;
    background: transparent; /* we set gradient with JS */
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    margin-top: 10px;
}
#seek::-moz-range-track {
  height: 10px;
  background: transparent;
  border-radius: 5px;
}
#seek::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background:#b78bff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease 0.3s;
}
#seek::-moz-range-thumb:hover{
    background-color: #ffffff;
    transform: scale(1.1);
}
#seek::-webkit-slider-runnable-track {
  height: 10px;
  background: transparent;
  border-radius: 5px;
}

/* WebKit Thumb */
#seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #b78bff;
  border-radius: 10px;
  margin-top: -5px; /* aligns thumb to track */
  cursor: pointer;
}
#uploaded{
    mask-size: 180%;
    -webkit-mask-size: 80px 80px;
    margin-top: 3%;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center; 
    transition: all 0.3s ease;

}
#uploaded:hover{
    background-color: var(--hovclik);
    transform: scale(1.2,1.2);
    cursor: pointer;
}
h5{
    font-size: 20px;
}
#seek::-webkit-slider-thumb:hover{
    background-color: #ffffff;
    transform: scale(1.05);
}
@media (max-width: 850px) {
    .playerContain{
        width: 75vw;
        margin-left: 12.5vw;
    }
    .textCont{
        width: 65%;
    }
    .holder{
        width: 30%;
    }
}

@media (max-height: 850px) and (orientation: landscape) {
  .topbean{
    height: 12vh;
  }
  .bottombean{
    height: 17vh;
  }
}

@media (max-width: 600px) {
    #queue{
        width: 70px;
    }
    h5{
        font-size: 18px;
    }
    .textCont{
        width: 58%;
    }
    .holder{
        width: 37%;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
  .topbean{
    height: 15vh;
  }
  .bottombean{
    height: 20vh;
  }
}
@media (max-height: 600px) and (orientation: landscape) and (max-width: 900px) {
  .playerContain{
    width: 80vw;
    margin-left: 10vw;
  }
}

/* Phone (up to 480px) */
@media (max-width: 520px) {
    html,body{
        height: 110vh;
    }
    .playerContain{
        width: 90vw;
        margin-left: 5vw;
    }
    .textCont{
        width: 53%;
    }
    .holder{
        width: 42%;
    }
    h5{
        font-size: 16px;
    }
    .mediascope{
        width: 40px;
        height: 40px;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
  .topbean{
    height: 18vh;
  }
  .bottombean{
    height: 23vh;
  }
}


@media (max-width: 410px) {
    h5{
        font-size: 13px;
    }
    .textCont{
        width: 58%;
    }
    .holder{
        width: 37%;
    }
    #uploaded{
        width: 40px;
        height: 40px;
        mask-size: 60px 60px;
        -webkit-mask-size: 60px 60px;
    }
    #Info{
        width: 40px;
        height: 40px;
        mask-size: 40px 40px;
        -webkit-mask-size: 40px 40px;
    }
    #queue{
        width: 40px;
        height: 40px;
        mask-size: 40px 40px;
        -webkit-mask-size: 40px 40px;
    }
    
}

@media (max-height: 410px) and (orientation: landscape) {
  .topbean{
    height: 21vh;
  }
  .bottombean{
    height: 28vh;
  }
}

@media (max-width: 300px) {
    h5{
        font-size: 13px;
    }
    .textCont{
        width: 47%;
    }
    .holder{
        width: 48%;
    }
}

@media (max-height: 300px) and (orientation: landscape) {
  .topbean{
    height: 24vh;
  }
  .bottombean{
    height: 30vh;
  }
}
