
html{
    scroll-behavior:smooth;
}
.EQ{
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  
}
.EQ-text{
    font-size: 25px;
    width:100%;
    text-align: center;
    color: white;
    opacity: 90%;
    line-height: 2rem;
     font-family:-apple-ststem, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.hero-section {
    position: relative;
}

/* song card css starts here*/

/*search css here*/
.search-wrapper{
    position: relative;
    margin: 0;
    width: 100%;
    max-width: 430px;
    display: grid;
    gap: .75rem;
    padding: 1.25rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.search-block{
    display: grid;
    gap: .8rem;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
}
.search-header{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}
.search-header span{
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #f8f8ff;
}
.search-hint{
    margin: 0;
    font-size: .8rem;
    color: rgba(255,255,255,0.75);
    opacity: .85;
}
.search-field{
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    padding: .9rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255,255,255,0.18);
}
.search-field:hover,
.search-field:focus-within{
    border-color: rgba(0,255,255,0.45);
    box-shadow: 0 0 0 1px rgba(0,255,255,0.12);
}
.search-icon{
    width: 1.35rem;
    height: 1.35rem;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}
.search-wrapper input{
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1rem;
    letter-spacing: .01em;
}
.search-wrapper input::placeholder{
    color: rgba(255,255,255,0.65);
    opacity: 1;
     font-size: 13px;
    padding: 10px;
    color: #c9c9c9;
    opacity: 60%;
}


.result{


    border-bottom: 1px solid rgba(255,255,255,0.18);
    height: 80px;
    padding: 1rem 1rem .9rem;
    width: 100%;
    display: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.result.show{
    transform: translateY(0);
    opacity: 1;
}
.result-artist{
    margin-bottom: .5rem;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #6e6e70;
    opacity: 50%;
}
.result-song{
    margin-bottom: .5rem;
    font-size: .3rem;
    line-height: 1;
    color: rgb(255, 255, 255);
    

}
.hide{
    display: none;
}
  .result-card{
        margin-top: .1rem;
        width: 100%;
        max-width: 200px;
        padding: 0px;
        height:200px;
        border-radius: 20px;
        overflow-x: hidden;
        background: rgba(255,255,255,0.05);
         backdrop-filter: blur(18px);
    }
    .result-card::-webkit-scrollbar{
        width: thin;
        background: rgba(255,255,255,0.05);
    }
    .result-card::-webkit-scrollbar-thumb{
        background-color: #00ffff5d;
        border-radius: 20px;
        width: thin;
    }


@media (min-width: 992px) {
    .W-box{
        width: 90vw;
        max-width: 1300px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        margin: 3% auto 5%;
    }
    .W-text{
        max-width: calc(100% - 460px);
        font-size: 2rem;
        line-height: 1.2;
    }
    .search-block{
        margin: 0;
    }
    .search-wrapper{
        margin: 0;
    }
   
    .result{
        margin-bottom: 7px;
    }
}




/*css for search bar ends here*/
.toggle-Btn{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: #edf0f19f;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    display: none;
}

.progress-container{
   width:100%;
   height: 6px;
   background: #333;
   border-radius: 3px;
   margin: 12px 0;
   cursor: pointer;
   position: relative; 
}
.progress-bar{
    width: 0%;
    height: 100%;
    background: #1db954;
    border-radius: 3px;
    transition: width 0.1s linear;
}
.time-display{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}
.featured-section {
      max-width: 1300px;
      margin: 0 auto;
      margin-top: 20px;
      padding-left:5rem;
      padding-right:5rem;
    
    
    }

    .section-title {
      font-size: 35px;
      font-weight: 700;
      margin-bottom: 45px;
      padding-left: 8px;
    }

    .song-card {
    

      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation:  appear both;
    animation-timeline: view(50% 10%);
    animation-range: entry 50% cover 100vh exit;
       }
         @keyframes appear{
        from {
            opacity: 0;
            transform: translateY(100px);
        }
        to{
            opacity: 1;
            transform:translateY(0);

        }
    }   
    

    .song-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    }

    .artwork-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      display: flex;
   
      overflow: hidden;
      height: 55%;
    
    }

    .artwork {
      width: 100%;
      height: 100%;
      object-fit:fill;
      display:block ;
      aspect-ratio: 1 / 2;
      overflow: hidden;
    

    }

    .play-button {
      position: absolute;
      top: 80%;
      left: 30%;
      transform: translate(-50%, -50%);
      width: 30px;
      height: 45px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(29, 29, 29, 0.4);
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid white;
    }

    .play-button:hover {
      background-color:transparent;
      border: 4px solid white;
      transform: translate(-50%, -50%) scale(1.1);
     box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4);
    }

    .play-icon {
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 18px solid white;
      margin-left: 4px;
    }

    .song-info {
      padding: 16px;
    }

    .song-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .artist {
      font-size: 15px;
      color: #a3a3c2;
    }

    /* For multiple cards */
    .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 1em;
      justify-content: center;
    }

    /* css for song card*/

/* css for section 3 */
.sec3{
    width: 100dvw;

    margin-top: 150px;
    padding: 8px 4%;
   
       
   

}
.gradient-container{
    width: 100%;
    height: 60dvh;
    display: flex;
    justify-content: space-between;
    align-content: center;
    overflow: hidden;
    margin-top: 50px;
     box-shadow: 0 70px 100px rgba(0, 0, 0, 1);
    
   
}
.h1-container{
    width:60%;  
    height: 100%;
    text-align: center;
    background: #000;
}
.img-box-gradient{
    width: 40%;
    height: 100%;
    right: 0px;
    position: relative;
    background:linear-gradient(90deg, #000 10%, #000000a8, #00000077, #00000000);
    overflow: hidden;
}
.gradient-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    position: absolute;
    z-index: -1;
  
}
 .sec3 .first{
    margin-bottom:0px;

 }
.sec3 .second{
    padding-top: 10px;
}
.sec3 .last{
    margin-bottom:50px;
}
.sec3 .middle{
    margin-bottom:0px;
    padding-top: 10px;
}
.sec3 .note{
    text-align: center;
}
.private-section .first{
    margin-bottom:0px;

 }
.private-section .second{
    padding-top: 10px;
    margin-bottom: 500px;
  
}
.private-section .last{
    margin-bottom:50px;
}
.private-section .middle{
    margin-bottom:0px;
    padding-top: 10px;
}
.private-section .note{
    text-align: center;
}
.wrapper{
    display: flex;
    justify-content: start;
    align-content: flex-start;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
    margin-top:  5rem;
}


.note-info{
    opacity: 60%;
}
.artist-container-sec3{
    width: 100%;
    height: 50%;
    padding-top: 100px;
    height: auto;
    margin-bottom:200px ;
 
}
.song-card-sec3{
    background: rgba(0, 0, 0, 0.712);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      max-width:300px;
      display: flex;
      scroll-snap-align: start;
    flex: 0 0 auto;
      align-items: center;
      justify-content: center;

        
      
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.song-card-sec3:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
    }
    .artwork-container-sec3 {
      position: relative;
      width: 50%;
      height: 125px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      justify-content: start;
      align-content: start;
      border-radius: 10px;
    }
 .artwork-sec3 {
      width: 100%;
      height: 100%;
      object-fit: fill;
      display:block ;
      overflow: hidden;
      border-radius: 10px;
    }
.song-info-sec3 {
      padding: 16px;
      width: 70%;
    }
.scroll-music{
     display: flex;
    gap: 26px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 16px;
    scroll-behavior: smooth;
    width: 95%;
    scroll-snap-type: x mandatory;
     scrollbar-width:none;
    scrollbar-color: #1db954 transparent;
      animation: scrollMusicAppear both;
    animation-timeline: view(50% 10%);
    animation-range: entry 90% cover 10vh exit;
  
}
 @keyframes scrollMusicAppear{
        from {
            opacity: 0;
            transform: translate(100px);
        }
        to{
            opacity: 100%;
            transform:translate(0);

        }
    }

.play-button-sec3 {
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 10px;
      height: 50px;
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 20px rgba(29, 29, 29, 0.4);
      transition: all 0.3s ease;
      cursor: pointer;
      border: 2px solid white;
    }

    .play-button-sec3:hover {
      background-color:transparent;
      border: 4px solid white;
      transform: translate(-50%, -50%) scale(1.1);
     box-shadow: 0 10px 20px rgba(255, 255, 255, 0.4);
    }

    .play-icon-sec3 {
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 18px solid white;
      margin-left: 4px;
    }
.artist-sec3{
  width: 100%;
  height: 100px;
  padding: 60px;
  font-size: 50px;
  text-shadow:0 0 20px hsl(0,0%,20%);  
}
.progress-bar-sec3{
    width: 0%;
    height: 100%;
    background: #1db954;
    border-radius: 3px;
    transition: width 0.1s linear;
}
.time-display-sec3{
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
}
.progress-container-sec3{
   width:100%;
   height: 6px;
   background: #333;
   border-radius: 3px;
   margin: 12px 0;
   cursor: pointer;
   position: relative; 
}

/* css for section 3 ends here*/
.hy 
   {
    font-family:-apple-ststem, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 100px;
    text-align: center;
    text-transform:capitalize ; 
    text-shadow:0 0 20px hsl(0,0%,20%);
    color:  white; 
    width: 100%;
    margin-bottom: 50px;
     overflow-x:hidden;
   }


  
.podcast{
    color: #00ffff;
}    

.recommended-artists{
width: 100%;
height: 50px;
margin-bottom: 105px;
text-align: center;
font-size: 25px;
text-shadow:0 0 20px hsl(0,0%,20%);
}  
.recommended-artists-h1{
    color: #fff;
    font-family: 'Times New Roman',;
}
body{
    background-image:url(assets/bgcool.webp); 
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-size:100% 100%; 
    width: 100%;
    height: 100%;
    font-family:-apple-ststem, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #1c1c1e;
    color: white;
    overflow-x:hidden;
    overflow-y: auto;
    position: relative;
  

    
}
.highlight {
    border: 1px solid #00ffff4b !important;
    box-shadow: 0 0 30px #00ffff4b !important;
    transition: all 0.3s ease;
}
.dropdown-menu{
    display: none;
    width: 40%;
  z-index: 10;
    position: absolute;
    height: 0;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}
.dropdown-menu.open{
    height: 240px;
    padding: 1rem;
    z-index: 10;
    position: absolute;

}
.dropdown-menu li{
    list-style: none;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weblink{
     color: #000;
     background: #f3f1f1d2;
     padding: 14px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     border-radius: 20px;
} 
.weblink:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(51, 50, 50, 0.4);
      color: #fff;
      background: #000;}

.hero-section{
 width: 100%;
 height: 100%;
 margin-bottom: 100px;


}
.sec-section{
    background-color: #02020f;
    height: 100vh;
    width: 100%;
}



.container{
    width: 90%;
    height: 250px;
    display:flex ;
    margin: 50px auto;
    overflow-x: auto;
    scroll-behavior: smooth;
    anchor-name: --container;
    scroll-snap-type: x mandatory;
   scroll-marker-group: after;
   
}
.container::scroll-marker-group{
    display: flex;
    justify-content: center;
    gap:.5em;
}
.box::scroll-marker{
    content: '';
    height: 1em;
    width: 1em;
    background: rgba(168, 168, 168, 0.747);
    border-radius:50%;
}
.box::scroll-marker:target-current{
    background-color: #00ffff;
}

.container::-webkit-scrollbar{
    display: none;

}
.container::scroll-button(right), .container::scroll-button(left){
    content:">" ;
    border: none;
     background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border:2px solid white;
    font-family: Consolas;
    font-size: 3rem;
    color: white;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    padding-bottom: .1em;
    cursor: pointer;
    position: fixed;
    position-anchor: --container;
    position-area: right center;
    translate: -70%;
    scroll-snap-type: x mandatory;
}
.container::scroll-button(left){
    content: "<" ;
     position-area: left center;
     translate: 70%;
}
.container::scroll-button(right):disabled, .container::scroll-button(left):disabled{
opacity: 0.5;
cursor: auto;
}
.box img{
    display: block;
    width: 100%;
    height:80%;
    border-radius: 10%;
    justify-content: center;
    align-content: center;
    object-fit: fill;
    
  
    
}

.box{
    scroll-snap-align: start;
    display: flex;
    flex: 0 0 12em;
    border-radius: 10%;
    width: 100%;
    height:100%;
    padding: 1em;
    justify-content: center;
    align-content: center;
   
    

}
.recommended-unlist{
    display: flex;
    justify-content: start;
    align-content: center;
    gap: 1em;
    width: 100%;
    padding: 16px 0;
    padding-right: 1em;
}




/*@keyframes spin{
     from{
        transform: translate(0);
     }
     to{
        transform: translate(-100%);
     }
     
}
*/

a.description {
    
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    bottom: 10%;

    text-align:center;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    color: white;
    text-shadow:0 0 20px hsl(0,0%,20%);
    
}
.description {
  
    font-size: 15px;
    font-weight: bold;
    padding: 10px;
    text-align:center;
    justify-content: center;
    align-items: center;
    align-content: center;
    display: flex;
    color: white;
    text-shadow:0 0 20px hsl(0,0%,20%);
}





*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}
li,a,button{
    font-family: sans-serif;
    font-weight: 500;
    font-size: 20px;
    color:#edf0f1;
    text-decoration: none;
   
}
.logo-box{
    width: 70px;
    height:70px;
    margin:auto;
    margin-top: 30px;



}
.Welcome{
    font-size: 25px;
    width:100%;
    text-align: center;
    color: white;
    opacity: 90%;
     
}
.W-box{
    width:100%;
    margin:  0 auto;
    padding-right: 1rem;
    display: grid;
    grid-template-rows: repeat(auto-fill, minmax(150px, 1fr));
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.W-text{
    font-size: 35px;
    opacity: 100%;
    color:#fff; 

}


.header-container{
    height: auto;
    width: 100%;
    display: flex;
    margin-bottom: 5%;
}
header{
    width: 70%;   
    height: 55px;
    margin-top: 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-right: auto;

}
.logo{
    cursor: pointer;
    height: 100%;
    width: 100%;
    border-radius: 27%;
  
}
nav{
    width: 100%;
    height: 100%;
}
.nav_links{
    list-style: none;
    display: flex;
    width: 70%;
    margin: auto;
    height: 100%;
    justify-content: space-between;
    align-content: center;



}
.nav_links li{
    
    justify-content: center;
    align-content: center;
    
    

}
.tags{
  transition: all 0.3s ease 0s;
    font-size: 25px;
}
.tags:hover{
    color:#00ffff;
}
button{
    padding: 9px 25px;
    background-color: rgba(0,136,169,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0.8s;
}

button:hover{
    background-color: rgba(98, 201, 226, 0.61);
}



/*PRIVATE SCHOOL SECTION BEGINS HERE*/



.private-section{
    height: auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 2%;
    overflow-x: hidden;
    margin-top: 10rem;
    
}

.headingcontainer-sec4{
    width: 100%;
   margin-top: 5rem;
   margin-bottom: 5rem;
    text-align: center;
    justify-content: center;
    align-content: center;
    display: flex;
}
.heading-sec4{
    font-size: 45px;
    background: linear-gradient(90deg, #00ffff 10%, #fff 50%,#00ffff);
    text-transform: uppercase;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 70%;

}








/*PRIVATE SCHOOL SECTION ENDS HERE*/
/*FOOTER SECTION BEGINS HERE*/
footer{
    text-align: center;
    font-size: 20px;
    color: aliceblue;
    padding-top:20px ;
    padding-bottom:20px ;

}

    .footer-section{
    height:55vh;
    width: 100%;
   
    padding: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
   
}
.footer{
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin: 20px;
    padding: 10px;
    height: 39vh;
   
}
.logo-footer{
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow:0 .5rem 1rem #000 ;
    margin-bottom: 30px;
    margin-top: 5px;
}
.logo-footer_img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin: 0 auto;
    object-fit: cover;
}
.container-footer{
    height: auto;
}
.social-container{
    justify-content: center;
    align-items: center;
    margin-left:40%;
    margin-bottom: 30px;
    
}
.socials a{
    margin-left:25px ;
   
}
.socials .image-footer{
    box-shadow:0 .5rem 1rem #000 ;
    border-radius: 5px;
    height: 37px;
    width: 37px;
}
.socials .image-footer-facebook{
    box-shadow:0 .5rem 1rem #000 ;
    border-radius: 20px;
    height: 37px;
    width: 37px;
}
.container-footer p{
    opacity: 70%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}
p.rights{
    margin-top: 20px;
    letter-spacing: 1px;
    opacity: 70%;
}
p.owner{
    color:mediumseagreen;
    opacity: 100%;
    font-size: 22px;

}
@media (max-width:1200px) {
        .nav_links{
            justify-content: space-between;
           
        }
        .tags {
            font-size: 15px;
        }
        .weblink{
            font-size: 15px;
        }
        .hy{
            font-size: 70px;
        }
        .recommended-artists{
            font-size: 25px;
        }
}

@media (min-width: 992px) {
    .W-box{
        width: 90vw;
        max-width: 1300px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
        margin: 3% auto 5%;
    }
    .W-text{
        max-width: calc(100% - 470px);
        font-size: 2rem;
        line-height: 1.2;
    }
    .search-block{
        margin: 0;
        width: min(430px, 40%);
    }
    .search-wrapper{
        width: 100%;
        max-width: 350px;
    }
    .result-card{
        width: 100%;
        max-width: 430px;
    
    }
}

@media (max-width:992px) {
     .toggle-Btn{
        display: none;
     }
      
      .W-box{
        width: 95%;
        display: block;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .search-wrapper{
        position: static;
        margin: 2rem auto 1rem;
        width: calc(100% - 2rem);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }
    .result-card{
        max-width: 300px;
        height: 200px;
        display: none;
        
    }
    .result{
        margin-bottom: 7px;
    }
      .search-block{
        margin: 1.5rem auto 0;
        gap: .1rem;
        padding: 20px;
        justify-content: center;
      }
 
      .weblink:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 30px rgba(51, 50, 50, 0.4);
      color: #fff;
      background: #000;
    
    }
    .tags:hover{
        color: #00ffff;
    }
    .hy{
        font-size: 60px;
    }
    .Welcome{
        font-size: 20px;
    }
    .recommended-artists{
        font-size: 20px;
    }
    
    .featured-section{
        margin-top: 0px;
    }
    .container{
        margin: 10px auto;
        width: 85%;
    }
    .section-title{
        text-align: center;
        margin-bottom: 90px;
    }
   
    .featured-grid{
        gap: 15px;
        padding: 10px ;
        
    }
    .featured-section{
        max-width: 800px;
        margin: 0 auto;
        padding: 30px;
        
    }
    body{
            overflow-x:hidden;
    }
    .dropdown-menu {
       right: 4rem;
       width: unset;
       top: 6.5rem;
       background: #000000c9;
    backdrop-filter: blur(30px);
      
       
      }
    .dropdown-menu.open{
    height: 240px;
    padding: 1rem;
    background: #000000c9;
    backdrop-filter: blur(30px);
}
.gradient-container{
    height: 300px;

}
.h1-container{
    width: 50%;
}
.img-box-gradient{
    width: 50%;
}
.artist-sec3{
    font-size: 40px;
}
.note-info{
    font-size: 15px;
}
 .song-card-sec3{
        max-width: 230px;
        height: 100px;

      }
     .artwork-container{
    height: 60%;

     }
     .artwork-container-sec3{
        height: 99px;
     }
   .song-title{
    font-size: 15px;
   }
    

}
@media (max-width:768px) {
       nav {
        display: none;
        backdrop-filter: blur(0px);
      }
      .logo-box{
        margin-left: 30px;
      }
      header{
         background:transparent;
         backdrop-filter: blur(0px);
         margin: 0px;
      }
      .dropdown-menu {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 5rem;
         background: rgba(24, 23, 23, 0.438);
      }




     .dropdown-menu {
       right: 4rem;
       width: unset;
       top: 6rem;
       background: #000000c9;
    backdrop-filter: blur(30px);
      
       
      }
      .toggle-Btn{
        width: 40px;
        display: block;
        right: 4rem;
        top: 3rem;
        height: 40px;
      }
    .dropdown-menu.open{
    height: 175px;
    padding: 1rem;
    background: #000000c9;
     backdrop-filter: blur(100px);
    }
      .W-box{
        width: 100%;
        margin: 0 auto;
        padding-right: 0;
        display: block;
      }
      .search-block{
        margin: 1.5rem auto 0;
      }
      .Welcome{
        font-size: 20px;
      }
      .W-text{
        font-size: 25px;
      }
      .box{
        aspect-ratio: 2 / 2;
        flex: 0 0 10%;
      }
      
        .hy{
            font-size: 50px;
            margin-bottom: 90px;
        }
      .song-card-sec3{
        max-width: 245px;
        height: 100px;

      }
      .artist-container-sec3{
    width: 100%;
    height: 100%;
   margin-top: 0px;
  padding: 5px;
}
.footer-section{
    height: 56vh;
}
}
@media (max-width: 600px) {
   .toggle-Btn{
     width: 35px;
    height: 35px;
    right:2rem;
    top: 2rem;
   }
 .dropdown-menu.open {
       right: 2rem;
       width:200px;
       top: 5.5rem;
       background: #000000c9;
    backdrop-filter: blur(30px);
      height: 175px;
       
      }
   .container{
    max-width: 470px;
   }
   .song-card{
    max-width:100%;
    
   }
   .song-card-sec3{
      max-width: 205px;
    height: 90px;
   }
  

   .artist-sec3{
    padding: 20px;
    font-size: 40px;
   }

    .W-box{
        width: 75%;
        margin: 0 auto;
        margin-bottom: 40px;
       
      }
      .Welcome{
        font-size: 20px;
      }
      .W-text{
        font-size: 25px;
      }
      .hy{
        font-size: 40px;
      }
      .recommended-artists{
        font-size: 15px;
      }
      .featured-section{
    padding: 15px;
    padding-bottom: 100px;
    
}
.hero-section{
overflow-y: hidden;
padding-bottom: 20px;
}
.logo-box{
    width: 50px;
    height: 50px;
}
.featured-grid{
    padding: 5px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.logo-footer{
    width: 65px;
    height: 65px;
}
.footer-section{
    height: 410px;
}
.footer-section .thanks{
    font-size:15px;

}
.footer-section .rights{
    font-size: 15px;
}
.footer-section .owner{
    font-size: 20px;
}
.gradient-container{
    height:530px;
    flex-direction: column;
    margin-bottom: 50px;

}
.h1-container{
    width: 100%;
    height: 230px;
   
    
}
.artist-sec3{
    padding: 15%;
}
.img-box-gradient{
    width: 100%;
  background:linear-gradient(180deg, #000000f1 10%, #000000a8 , #00000077 , #f7f7f700);
  height: 400px;
}
.gradient-img{
    aspect-ratio: 9 / 16;
}.play-button-sec3{
        top: 50%;
        width: 50px;
        height: 50px;
        padding: 10px;
        background:linear-gradient(180deg, #000000f1 10%, #000000a8 , #00000081 , #f7f7f700);

}
.artwork-container-sec3{
    height: 100px;
    width: 45%;
    border-radius: 15px;
    overflow: hidden;
}
.artwork-sec3{
     border-radius: 15px;
}


.search-wrapper{
        top: auto;
        right: auto;
        margin: 1.5rem auto;
        padding: 1rem;
    }
    .search-header span{
        font-size: .95rem;
    }
    .search-hint{
        font-size: .75rem;
    }
    .search-field{
        padding: .8rem .95rem;
    }
    .search-wrapper input{
        font-size: .95rem;
    }

.headingcontainer-sec4{
    width: 100%;

}
.heading-sec4{
    font-size: 30px;
}
 .artwork-container .artwork {
      width: 100%;
      height: 100%;
    object-fit:fill;
      display:block ;
      aspect-ratio: 1 / 1;
    justify-content: center;
    align-content: center;
      
   

    }
    .artwork-container{
    height: 150px;
    display: flex;    
    

    }
    .recommended-unlist{
height: 180px;
width: 180px;
}
.container{
    height: 180px;
    margin-top:50px;
}
.container::scroll-button(left){
    content: "<" ;
     position-area: left top;
     translate: 100%;
    height: 40px;
    width: 40px;
    font-size: 1.5rem;
}
.container::scroll-button(right){
    content: ">" ;
     position-area: right top;
     translate: -160%;
     height: 40px;
    width: 40px;
    font-size: 1.5rem;
}


}
@media (max-width: 500px){
    .featured-grid{  
    padding: 0px;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
     .box{
        aspect-ratio: 1 / 2;
        flex: 0 0 50%;
          padding: 5px;
      }
    
      .artist-sec3{
        width: 100%;
        padding: 20px;
      }
    
      .img-box-gradient{
        aspect-ratio: 16 / 9;
          background:linear-gradient(180deg, #000000ef 10%, #000000c9 , #0000009f , transparent);
          overflow: hidden;

      }
      .search-wrapper input::placeholder{
    color: rgba(255,255,255,0.65);
    opacity: 1;
     font-size: 10px;
    padding: 11px;
    color: #c9c9c9;
    opacity: 60%;
}

}

@media (max-width: 400px) {
    .hy{
        font-size: 30px;
        margin-bottom: 20px;
        
    }
    .W-text{
        font-size:20px ;
    }
    .Welcome{
        opacity: 80%;
        font-size: 15px;
        
    }
    .W-box{
        height: auto;
        width: 90%;
        padding: 0;
    }
    .search-block,
    .search-wrapper,
    .result-card{
        width: calc(100% - 1.5rem);
        max-width: 100%;
        margin: 1rem auto 0;
    }
    .search-wrapper{
        padding: 1rem;
    }
    .recommended-artists{
        font-size: 13px;
        margin-bottom: 10px;
    }
    .section-title{
        font-size: 25px;
        margin-bottom: 40px;
    }
    .artist-sec3{
        width: 100%;
        text-align: center;
        height: auto;
        margin-bottom: 10px;
    }
    .dropdown-menu.open,
    .dropdown-menu{
        right: 5rem;
        top: 1rem;
    }
    .artwork-container-sec3{
    height: 98px;
    width: 120px;
    border-radius: 10px;
}

    .logo-box{
        margin-bottom: 40px;
    }
   
    .box{
        aspect-ratio: 1 / 2;
        flex: 0 0 50%;
        padding: 5px;
      }

    .artwork-container{
    height: 110px;
    }
    .play-button-sec3{
        top: 50%;
        width: 40px;
        height: 40px;
        padding: 10px;
        background:linear-gradient(180deg, #000000f1 10%, #000000a8 , #00000081 , #f7f7f700);

    }
.song-card{
    max-width: 170px;
}.play-button{
      top: 50%;
      left: 50%;
        width: 40px;
        height: 40px;
        padding: 10px;
        background:linear-gradient(180deg, #000000f1 10%, #000000a8 , #00000081 , #f7f7f700);

}

.artist-sec3{
    font-size: 25px ;
    margin-bottom: 40px;
    margin-top: 60px;
    padding: 10px;
}
.song-title{
    font-size: 13px;
}
.artist{
    font-size: 13px;
}
.song-card-sec3{
    max-width: 195px;
    height: 80px;
}
.song-info-sec3{
    width: 170px;
}
.artwork-container-sec3{
    height: 100%;
    width: 45%;


}
.artwork-sec3{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.footer-section{
    overflow: hidden;
    height: 375px;
}
.logo-footer{
    height: 50px;
    width: 50px;
    border-radius: 10px;
}
.logo-footer_img{
    border-radius: 10px;
}
.socials a .image-footer-facebook{
    width: 25px;
    height: 25px;
}
.socials a .image-footer{
    width: 25px;
    height: 25px;
}
.featured-section{
    padding: 10px;
}
.featured-grid{
    

    padding: 0px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}.gradient-container{
    height: 400px;
}
   .recommended-unlist{
height: 150px;
width: 150px;
}
.container{
    height: 180px;
    margin-top:50px;
}
.container::scroll-button(left){
    content: "<" ;
     position-area: left top;
     translate: 100%;
    height: 30px;
    width: 30px;
    font-size: 1rem;
}
.container::scroll-button(right){
    content: ">" ;
     position-area: right top;
     translate: -160%;
     height: 30px;
    width: 30px;
    font-size: 1rem;
}
.EQ-text{
    font-size: 17px;
   
}


}
