  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  .player {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
  }
  .title {
    font-size: 1.2em;
    margin-bottom: 5px;
  }
  .artist {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 15px;
  }
  .controls button {
    background: #fff;
    color: #333;
    border: none;
    margin: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
  }
  .progress-container, .volume-container {
    margin: 10px 0;
  }
  input[type="range"] {
    width: 100%;
  }
  .playlist {
    margin-top: 15px;
    text-align: left;
  }
  .playlist-item {
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
  }
  .playlist-item:hover {
    background: rgba(255,255,255,0.2);
  }