body {
  background-color: #333;
  font-family: 'Tahoma', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

#winamp {
  width: 300px;
  background-color: #000;
  color: #00ff00;
  border: 2px solid #777;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

#title-bar {
  background: linear-gradient(90deg, rgba(20,21,28,1) 0%, rgba(45,46,72,1) 50%, rgba(20,21,28,1) 100%);
  height: 15px;
  color: #fff;
  padding: 5px;
  position: relative;
  text-align: center;
  border: 1px solid #555;
  border-radius: 15px 15px 0 0;
}

#title-bar #title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 12px;
}

#close-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

#screen {
  background: linear-gradient(90deg, rgba(20,21,28,1) 0%, rgba(45,46,72,1) 50%, rgba(20,21,28,1) 100%);
  padding: 10px;
  border-bottom: 2px solid #777;
}

#track-info {
  color: #00ff00;
  font-family: 'Courier New', monospace;
}

#controls {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

button {
  background-color: #333;
  border: none;
  color: #00ff00;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
}

button:hover {
  background-color: #555;
}
