body { margin: 0; font-family: 'Arial', sans-serif; background: #121212; color: #fff; display: flex; justify-content: center; align-items: center; height: 100vh; } .app-container { text-align: center; width: 100%; max-width: 400px; background: #1c1c1c; border-radius: 20px; padding: 20px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .header .logo { width: 80px; height: 80px; margin: 0 auto; } .radio-name { margin: 10px 0; font-size: 1.5em; color: #c8519e; } .audio-player { margin: 20px 0; } .btn-play, .btn-stop { background: #c8519e; border: none; border-radius: 50%; color: #fff; font-size: 1.2em; width: 50px; height: 50px; margin: 5px; cursor: pointer; box-shadow: 0 3px 10px rgba(200, 81, 158, 0.6); } .volume-control .volume-slider { width: 100%; margin-top: 10px; } .vu-meter { display: flex; justify-content: space-between; margin-top: 15px; } .vu-bar { width: 10px; height: 40px; background: #c8519e; animation: vu-animation 1s infinite ease-in-out; } @keyframes vu-animation { 0%, 100% { height: 10px; } 50% { height: 40px; } } .social-media { margin-top: 20px; } .social-icon { margin: 0 10px; color: #fff; font-size: 1.5em; text-decoration: none; transition: transform 0.3s ease; } .social-icon:hover { transform: scale(1.2); }