.nzp-player {
  display: grid;
  gap: 12px;
}

.nzp-heading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #e2e8f0;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.nzp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--nzp-accent, #38bdf8);
  box-shadow: 0 0 14px var(--nzp-accent, #38bdf8);
}

.nzp-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  padding: 10px;
}

.nzp-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: none;
  background: transparent;
  color: #e2e8f0;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nzp-btn:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

.nzp-icon {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.nzp-icon-play,
.nzp-icon-stop {
  display: block;
}

.nzp-icon-play {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--nzp-accent, #38bdf8);
  margin-left: 2px;
}

.nzp-icon-stop {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--nzp-accent, #38bdf8);
  display: none;
}

.nzp-item.is-playing .nzp-icon-play {
  display: none;
}
.nzp-item.is-playing .nzp-icon-stop {
  display: block;
}

.nzp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.nzp-title {
  font-weight: 800;
  font-size: 14px;
  color: #f8fafc;
}

.nzp-duration {
  font-size: 12px;
  color: #94a3b8;
}

.nzp-bars {
  display: grid;
  grid-template-columns: repeat(28, 1fr);
  align-items: flex-end;
  gap: 3px;
  margin: 8px 6px 2px;
  height: 44px;
}

.nzp-bar {
  display: block;
  height: var(--nzp-bar-h, 22px);
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.25);
  transition: background 0.15s ease, transform 0.15s ease, height 0.2s ease;
}

.nzp-bar.is-active {
  background: linear-gradient(
    180deg,
    var(--nzp-accent, #38bdf8),
    rgba(56, 189, 248, 0.35)
  );
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
  transform: translateY(-1px);
}

.nzp-player-empty {
  padding: 10px;
  border-radius: 10px;
  background: #0b1220;
  color: #94a3b8;
  border: 1px dashed rgba(148, 163, 184, 0.4);
}
