body {
  background-color: #222;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.winamp {
  width: 300px;
  background: linear-gradient(to bottom, #333, #111);
  border: 2px solid #666;
  border-radius: 5px;
  box-shadow: 0 0 10px #000;
  color: #0f0;
}

.title-bar {
  background: #444;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.buttons button {
  background: #222;
  color: #fff;
  border: none;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  font-size: 12px;
}

.screen {
  background: #000;
  padding: 10px;
  font-size: 13px;
  color: #0f0;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

.controls {
  padding: 10px;
  display: flex;
  justify-content: space-around;
}

.controls button {
  background: #333;
  color: #0f0;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 5px;
  font-size: 16px;
  cursor: pointer;
}

.controls button:hover {
  background-color: #555;
}
