 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Poppins", sans-serif;
 }

 body {
     height: 100vh;
     display: flex;
     justify-content: center;
     align-items: center;
     background: #2e2e2e;
 }

 .player {
     width: 320px;
     padding: 20px;
     border-radius: 15px;
     background: linear-gradient(180deg, #ffe3ec, #ffd6e0);
     text-align: center;
     box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
 }

 .top-nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 25px;
 }

 .top-nav button {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     border: none;
     background: white;
     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
     cursor: pointer;
     font-size: 18px;
 }

 .album-cover {
     width: 150px;
     height: 150px;
     margin: auto;
     border-radius: 50%;
     overflow: hidden;
     border: 6px solid white;
     box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
 }

 .album-cover img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .song-title {
     font-size: 18px;
     font-weight: 600;
     margin-top: 20px;
     color: #333;
 }

 .artist {
     font-size: 13px;
     font-weight: 400;
     color: #555;
     margin-bottom: 25px;
 }

 .progress-container {
     width: 100%;
     margin: 20px 0;
 }

 .progress-container input[type="range"] {
     -webkit-appearance: none;
     width: 100%;
     height: 5px;
     background: #ff4d8b;
     border-radius: 5px;
     outline: none;
     cursor: pointer;
 }

 .progress-container input[type="range"]::-webkit-slider-thumb {
     -webkit-appearance: none;
     width: 15px;
     height: 15px;
     border-radius: 50%;
     background: white;
     border: 3px solid #ff4d8b;
     box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
 }

 .controls {
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin-top: 10px;
 }

 .controls button {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     border: none;
     background: white;
     font-size: 20px;
     cursor: pointer;
     box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
 }

 .controls .play {
     width: 70px;
     height: 70px;
     background: #ff4d8b;
     color: white;
     font-size: 28px;
     box-shadow: 0px 8px 20px rgba(255, 77, 139, 0.4);
 }