 * {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     font-family: Arial, Helvetica, sans-serif;
 }

 body {
     width: 100%;
     height: 100vh;
     background-color: #121212;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 .app {
     width: 98%;
     height: 90%;
     background-color: #121212;
     display: flex;
     flex-direction: column;
 }

 .appBody {
     flex: 1;
     overflow: auto;
     background-color: #121212;
 }

 .appPlayer {
     height: 15%;
     min-height: 80px;
     padding: 20px;
     background-color: #860707;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 15px;
     flex-wrap: wrap;
 }

 .miniPlayer {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 10px;
     border-radius: 8px;
     min-width: 200px;
 }

 #miniImg {
     width: 60px;
     height: 60px;
     border-radius: 5px;
     object-fit: cover;
 }

 .miniInfo {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 #miniTitle {
     font-weight: bold;
     font-size: 14px;
 }

 #miniArtist {
     color: #1db954;
     font-size: 12px;
     font-weight: bold;
 }

 .playerControls {
     display: flex;
     align-items: center;
     gap: 15px;
     flex: 1;
     justify-content: center;
     flex-wrap: wrap;
     max-width: 700px;
 }

 .controlBtn {
     width: 30px;
     height: 30px;
     cursor: pointer;
     font-weight: bold;
     transition: transform 0.2s;
 }

 .controlBtn:hover {
     transform: scale(1.1);
 }

 #miniPlayBtn {
     width: 40px;
     height: 40px;
 }

 .progressSection {
     display: flex;
     align-items: center;
     gap: 10px;
     flex: 1;
     min-width: 300px;
     max-width: 500px;
 }

 #CurrTime,
 #totalTime {
     font-size: 12px;
     min-width: 40px;
 }

 #progressBar {
     flex: 1;
     height: 5px;
     appearance: none;
     background: #535353;
     border-radius: 5px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 #progressBar::-webkit-slider-thumb {
     appearance: none;
     width: 15px;
     height: 15px;
     background: #1db954;
     border-radius: 50%;
     cursor: pointer;
     box-shadow: 0 0 5px #1db954;
 }

 #progressBar::-moz-range-thumb {
     width: 15px;
     height: 15px;
     background: #1db954;
     border-radius: 50%;
     cursor: pointer;
     border: none;
 }

 .appContent {
     width: 100%;
     display: flex;
     flex-direction: column;
     gap: 20px;
     padding: 20px;
     background-color: #121212;
 }

 .trendingSec,
 .ArtistSec,
 .popularSec,
 .aboutSec {
     width: 100%;
     min-height: 300px;
     background-color: #181818;
     border-radius: 10px;
     padding: 15px;
     color: white;
 }

 .infotab {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 15px;
     flex-wrap: wrap;
     gap: 10px;
 }

 .infotab h1 {
     font-size: 18px;
     font-weight: bold;
     color: #ffffff;
 }

 .infotab button {
     padding: 8px 16px;
     background-color: transparent;
     color: #ffffff;
     border: 1px solid #b3b3b3;
     border-radius: 20px;
     font-size: 12px;
     cursor: pointer;
     transition: all 0.2s ease;
 }

 .infotab button:hover {
     border-color: #1db954;
     color: #1db954;
 }

 #songs-container {
     display: flex;
     flex-direction: row;
     overflow-x: auto;
     gap: 20px;
     padding: 20px 0;
 }

 .songCard {
     min-width: 200px;
     flex-shrink: 0;
     background: transparent;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .imgWrapper {
     position: relative;
     width: 400px;
     height: 250px;
     margin-right: 20px;
     border-radius: 15px;
     background: transparent;
     overflow: hidden;
 }

 .fimg {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 15px;
     transition: transform 0.4s ease;
 }

 .imgWrapper:hover .fimg,
 .imgWrapper:hover .pimg {
     transform: scale(1.15);
 }

 .gradient {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1), transparent);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .imgWrapper:hover .gradient {
     opacity: 1;
 }

 .playBtn,
 .playlistBtn {
     position: absolute;
     bottom: 15px;
     right: 15px;
     width: 50px;
     height: 50px;
     background: #ff5100;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
 }

 .playIcon {
     width: 20px;
     filter: brightness(0);
     margin-left: 3px;
 }

 .imgWrapper:hover .playBtn,
 .imgWrapper:hover .playlistBtn {
     opacity: 1;
     transform: scale(1.1);
 }

 .songCard h3 {
     margin-top: 10px;
     color: #1db954;
     font-size: 16px;
 }

 .songCard p {
     color: #b3b3b3;
     font-size: 14px;
     margin-top: 5px;
 }

 .songCard.playing {
     background: rgba(65, 187, 8, 0.08);
     padding: 15px;
     margin-bottom: 50px;
     margin-right: 20px;
     border-radius: 10px;
 }

 .aboutSec {
     min-height: 150px;
 }

 .aboutSec h5 {
     margin-bottom: 10px;
     color: #1db954;
 }

 .aboutSec p {
     color: #b3b3b3;
     font-size: 14px;
 }

 .currPlayingBtn {
     background-color: #64fc0c;
     padding: 2px;
     border-radius: 20%;
 }


 .appBody::-webkit-scrollbar,
 .appContent::-webkit-scrollbar {
     width: 8px;
     height: 8px;
 }

 .appBody::-webkit-scrollbar-track,
 .appContent::-webkit-scrollbar-track {
     background: transparent;
 }

 .appBody::-webkit-scrollbar-thumb,
 .appContent::-webkit-scrollbar-thumb {
     background: rgba(29, 185, 84, 0.35);
     border-radius: 10px;
 }


 .appBody,
 .appContent {
     scrollbar-width: thin;
     scrollbar-color: rgba(29, 185, 84, 0.35) transparent;
 }



 #songs-container::-webkit-scrollbar {
     height: 9px;
 }

 #playlist-song-container {
     display: flex;
     margin: 10px;
     overflow-x: scroll;




 }

 #playlist-container {
     width: 90%;
     height: auto;
     display: flex;
     overflow-x: scroll;
     border-radius: 10px;
 }

 .pimg {
     width: 400px;
     border-radius: 210px;

     margin-right: 40px;
     margin-bottom: 10px;
     border-radius: 25px;
     transition: transform 0.4s ease;
 }

 #artist-container {

     display: flex;
     overflow-x: scroll;
     overflow-y: hidden;
     flex-direction: row;
     align-items: center;
     height: 250px;
      transition: transform 0.4s ease;
     


 }

 .ta {
     width: 300px;
     margin-right: 10px;
        transition: transform 0.4s ease;


 }

 .ta h1 {

     font-size: 20px;
     color:#1db954;
 }
 .ta:hover{
    transform: scale(1.1);
    margin-left: 10px;
    margin-right: 15px;
 }

 .aimg {

     width: 200px;
     border-radius: 10px;


 }
.portfolioBtns button {
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    background: #1db954;
    color: white;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.portfolioBtns button:hover {
    background: #17a74a;
    transform: translateY(-2px);
}

 @media (max-width: 768px) {
     .app {
         width: 100%;
         height: 100%;
     }

     .appPlayer {
         padding: 10px;
         gap: 10px;
         min-height: 120px;
         height: auto;
     }

     .miniPlayer {
         width: 100%;
         min-width: unset;
     }

     .playerControls {
         width: 100%;
         gap: 10px;
     }

     .progressSection {
         width: 100%;
         min-width: unset;
     }

     .controlBtn {
         width: 20px;
         height: 25px;
     }

     #miniPlayBtn {
         width: 25px;
         height: 35px;
     }

     .appContent {
         padding: 10px;
         gap: 15px;
     }

     .imgWrapper {
         width: 150px;
         height: 150px;
     }

     .songCard {
         min-width: 150px;
     }

     .infotab h1 {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     #miniImg {
         width: 50px;
         height: 50px;
     }

     #miniTitle {
         font-size: 12px;
     }

     #miniArtist {
         font-size: 11px;
     }

     .imgWrapper {
         width: 120px;
         height: 120px;
     }

     .songCard {
         min-width: 120px;
     }

     .songCard h3 {
         font-size: 14px;
     }

     .songCard p {
         font-size: 12px;
     }
 }

 @media (max-width: 412px) {
     .appPlayer {

         margin-bottom: 50px;
     }
 }