body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: transparent;
}

.ipod-container {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 120px;
  z-index: 1000;
}

.ipod-body {
  background: #f2c0d9;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.screen {
  background: #ff9ed1;
  border-radius: 15px;
  padding: 8px;
  text-align: center;
  margin-bottom: 10px;
}

#song-title {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  margin-top: 5px;
  overflow: hidden;
}

.progress {
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
}

.controls {
  display: flex;
  justify-content: space-between;
}

.controls button {
  background: #ffc0df;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.controls button:hover {
  background: #ff80c1;
}

