body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.radio-player {
  text-align: center;
  background: #111;
  padding: 1.5rem;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 0 20px orange;
  position: relative;
}

.album-art {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid orange;
  object-fit: cover;
}

.station-name {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: orange;
}

.track-title {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
}

.progress-bar {
  width: 100%;
  margin-top: 1rem;
  accent-color: orange;
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.play-btn, .volume-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: white;
  cursor: pointer;
}

.live-indicator {
  color: orange;
  font-size: 0.85rem;
}

.volume-level {
  font-size: 0.85rem;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: orange;
  font-size: 1.2rem;
  margin: 0 10px;
  text-decoration: none;
}
