/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.content {
  padding: 20px;
}

.player-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #1a1a1a, #2d2d2d);
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.player {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 10px;
}

.station-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.station-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #3498db;
}

.station-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: none;
}

.station-logo i {
  font-size: 20px;
  color: white;
}

.station-details {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.station-name {
  font-weight: bold;
  font-size: 1.1em;
}

.now-playing {
  font-size: 0.8em;
  color: #3498db;
}

.song-title {
  font-size: 0.9em;
  color: #ffffff;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listeners {
  font-size: 0.8em;
  color: #999;
  margin-top: 2px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-pause {
  background: #3498db;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.play-pause:hover {
  background: #2980b9;
  transform: scale(1.05);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.volume-slider {
  width: 100px;
  height: 4px;
  -webkit-appearance: none;
  background: #666;
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #3498db;
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #3498db;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.playing .station-logo img {
  animation: rotate 10s linear infinite;
}

.playing .station-logo {
  animation: none;
}

@media (max-width: 600px) {
  .player {
    flex-direction: column;
    gap: 15px;
  }
  
  .controls {
    width: 100%;
    justify-content: center;
  }

  .station-details {
    text-align: center;
    min-width: 0;
  }
}
