* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  background-image: url("assets/images/background.jpg");
    background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
}

.player-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.player-card {
  width: 100%;
  max-width: 500px;
  background: var(--color-card);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  min-height: 190px;
  height: auto;
  position: relative;
}

.header { margin-bottom: 12px; }
.station { font-size: 1.1rem; font-weight: 500; }

.row { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: start; }

.left-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.art-wrap {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
}

.art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 10px;
  background: rgba(255, 0, 51, 0.5);
  color: #fff;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  z-index: 5;
  pointer-events: none;
}

.meta { margin-bottom: 10px; }
.title {
  font-size: 1.2rem;
  font-weight: 500;
}
.artist {
  color: var(--color-muted);
  margin-top: 4px;
}
.progress { display: grid; grid-template-columns: 56px 1fr 56px; gap: 8px; align-items: center; margin-top: 8px; }
.progress-track { width: 100%; height: 6px; background: #222; border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: rgba(29, 185, 84, 0.35); }
.progress span { color: var(--color-muted); font-size: 0.9rem; } 
.dj {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dj img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08); /* sehr leichter Separator */
}

/* DJ-Name unter dem Foto */
.dj-name {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-muted);
  width: 84px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Auto-DJ Namen 20px nach rechts versetzen */
.dj-name.autodj {
  margin-left: 0px;
}
.actions { margin-top: 14px; display: flex; gap: 16px; }
.link { background: transparent; border: none; color: var(--color-text); cursor: default; }
.link.muted { color: var(--color-muted); }
.btn {
  background: #3a3a3a; /* leichtes Grau */
  color: var(--color-text);
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
}
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.btn.primary { background: #4a4a4a; /* dezentes Grau statt Grün */ }

/* Icon-Buttons: kompakte, zentrierte Fläche mit fester Größe */
.btn.icon {
  padding: 6px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Lautsprecher-Icon leicht größer */
.btn.mute svg {
  width: 28px;
  height: 28px;
}

/* Markenfarbakzente über currentColor */
.btn.brand-winamp { color: #ffa500; }
.btn.brand-wmp { color: #f28c00; }
.btn.brand-quicktime { color: #00a5ff; }
.btn.brand-vlc { color: #ff7a00; }

/* Mute-Zustand: Button/Icon wird rot, ohne Durchstreichung */
.btn.mute.muted { color: #ff3b3b; }

input[type=range] {
  width: 160px;
  accent-color: #b0b0b0; /* helles Grau statt Standard-Blau */
}

/* Compact mode removed to show full player at fixed size */