body {
  font-family: 'Poppins', sans-serif;
  background: #081250;
  margin: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.player-card {
  background: #ffffff;
  color: #081250;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  max-width: 360px;
  width: 100%;
  text-align: center;
}

.player-logo {
  width: 100px;
  border-radius: 16px;
  margin-bottom: 15px;
}

.station-name {
  font-size: 24px;
  font-weight: 600;
  margin: 5px 0;
}

.status {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.controls {
  margin: 20px 0;
}

.controls button {
  background: #081250;
  color: #fff;
  font-size: 28px;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.3s;
}

.controls button:hover {
  transform: scale(1.1);
  background: #0a1780;
}

.song-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.actions {
  margin-top: 20px;
}

#installBtn {
  background: #081250;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
}