
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at center, #1e1e3f, #141427);
  color: white;
  text-align: center;
  padding: 30px;
}
.container {
  max-width: 700px;
  margin: auto;
}
.logo img {
  height: 80px;
  margin-bottom: 20px;
}
.nowplaying {
  font-size: 20px;
  margin: 10px 0;
}
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}
.cover {
  width: 200px;
  height: 200px;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.stream-info {
  text-align: left;
}
.live {
  font-size: 22px;
  font-weight: bold;
}
.listeners {
  margin-top: 10px;
  font-size: 16px;
  color: #ccc;
}
.player {
  margin-top: 30px;
}
audio {
  width: 90%;
  max-width: 500px;
}
footer {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}
