 .radio-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #56036A;
  padding: 10px;
  color: white;
  font-family: Arial, sans-serif;
  border-radius: 8px;
}

.radio-player .onair {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.radio-player .mic-icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
  background: #FEDD00;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% { background: #FEDD00; }
  100% { background: #FF0000; }
}

.radio-player .logo img {
  max-height: 40px;
}

.radio-player .controls button {
  background: yellow;
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

.radio-player .controls input {
  margin-left: 10px;
}

.radio-player .social a {
  margin-left: 5px;
  color: white;
  font-size: 18px;
}
