.domus-radio-player {
  display: flex;
  flex-direction: column;
  background: #00243d;
  color: #fffffc;
  padding: 16px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

/* 🔴 ON AIR */
.on-air-status {
  font-weight: bold;
  margin-bottom: 8px;
  color: #beb7a4;
}

.on-air-status.on {
  color: #ff3f00;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  50% { opacity: 0.5; }
}

/* ▶ CONTROLS */
.domus-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.domus-toggle {
  background: #ff7f11;
  color: #fffffc;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.domus-toggle.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 🔊 VOLUME */
.domus-volume-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.volume-icon::before {
  content: '🔊';
}

.domus-volume {
  flex: 1;
}

/* 🎵 TRACKS */
.track-row {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  align-items: center;
}

.track-row .label {
  color: #ff3f00;
  font-weight: bold;
  min-width: 40px;
  flex-shrink: 0;
}

.track-scroll {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  position: relative;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.track-scroll .value {
  display: inline-block;
  white-space: nowrap;
  text-shadow: 0 0 2px #ff3f00, 0 0 6px #ff3f00;
  will-change: transform;
}

/* 📻 SHOW INFO */
.show-info {
  font-size: 0.9em;
  margin-bottom: 4px;
}

.show-info > strong {
  color: #beb7a4;
}

.show-info .value strong {
  color: #fffffc;
  font-weight: bold;
}

.show-info .value {
  color: #fffffc;
}

.domus-audio {
  display: none;
}
