body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  padding-bottom: 80px; /* Prevent content being hidden under player */
  background: #000; /* Optional background for page */
  color: #fff;
}

.sticky-footer-player {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid orange;
  box-shadow: 0 -2px 10px rgba(255, 165, 0, 0.4);
  z-index: 1000;
  height: 80px;
}

.player-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  padding: 0 1rem;
}

.album-art {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid orange;
}

.track-info {
  flex-grow: 1;
  overflow: hidden;
}

.station-name {
  font-weight: bold;
  font-size: 0.9rem;
  color: orange;
}

.track-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.85rem;
}

.play-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  margin: 0 1rem;
  cursor: pointer;
}

.social-icons a {
  color: orange;
  margin: 0 0.5rem;
  font-size: 1.2rem;
}

.watermark {
  position: absolute;
  right: 10px;
  bottom: 5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
