/* ── Profile Song accordion (reuses background accordion shell) ── */
.profile-song-accordion {
  gap: 0;
  padding-top: 0;
}

.profile-song-current {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-song-current__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.profile-song-current__meta {
  font-size: 0.86rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.profile-song-filename {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 4px;
  word-break: break-all;
}

.profile-song-cover-preview {
  display: block;
  width: 88px;
  height: 88px;
  margin-top: 8px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.profile-song-cover-preview[hidden] {
  display: none;
}

.profile-song-status {
  font-size: 0.82rem;
  color: var(--accent);
  text-align: left;
}

.profile-song-status.is-error {
  color: #ff6b6b;
}

.profile-song-remove-btn {
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(255, 107, 107, 0.35);
  border-radius: 10px;
  background: rgba(255, 107, 107, 0.08);
  color: #ff8a8a;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.profile-song-remove-btn:hover,
.profile-song-remove-btn:focus-visible {
  background: rgba(255, 107, 107, 0.14);
  border-color: rgba(255, 107, 107, 0.55);
  color: #ffb4b4;
  outline: none;
}

.profile-song-remove-btn[hidden] {
  display: none;
}

.edit-profile-form__file-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(var(--accent-r), 0.12);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--theme-transition);
}

.edit-profile-form__file-btn:hover {
  background: rgba(var(--accent-r), 0.18);
}

.music-player__artwork:not([src]),
.music-player__artwork[src=""] {
  background:
    radial-gradient(circle at 30% 25%, rgba(var(--accent-r), 0.35), transparent 55%),
    rgba(255, 255, 255, 0.06);
  object-fit: cover;
}
