:root{
  --nc-coral: #e8554e;          /* NobleChatter coral */
  --nc-coral-ink: #b73934;
  --nc-bg: #ffffff;
  --nc-ink: #1b1b1f;
  --nc-muted: #6b7280;
  --nc-border: rgba(17, 24, 39, 0.12);
  --nc-shadow: 0 10px 25px rgba(0,0,0,0.06);
  --nc-radius: 16px;
  --nc-font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.nc-player{
  font-family: var(--nc-font);
  background: var(--nc-bg);
  border: 1px solid var(--nc-border);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow);
  padding: 14px;
  max-width: 860px;
}

.nc-player__top{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
}

.nc-player__art{
  width: 86px;
  height: 86px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--nc-border);
  background: linear-gradient(135deg, rgba(232,85,78,0.12), rgba(232,85,78,0.02));
}
.nc-player__art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-player__label{
  font-size: 12px;
  color: var(--nc-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.nc-player__title{
  font-size: 18px;
  font-weight: 700;
  color: var(--nc-ink);
  line-height: 1.2;
}
.nc-player__show{
  font-size: 13px;
  color: var(--nc-muted);
  margin-top: 2px;
}

.nc-player__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.nc-btn{
  border: 1px solid var(--nc-border);
  background: #fff;
  color: var(--nc-ink);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.05s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.nc-btn:active{ transform: translateY(1px); }
.nc-btn:hover{ box-shadow: 0 6px 18px rgba(0,0,0,0.06); border-color: rgba(232,85,78,0.35); }

.nc-btn--primary{
  border-color: rgba(232,85,78,0.55);
  background: linear-gradient(180deg, rgba(232,85,78,1), rgba(215,69,63,1));
  color: #fff;
  padding: 9px 16px;
}
.nc-btn--ghost{
  background: rgba(232,85,78,0.06);
  border-color: rgba(232,85,78,0.22);
  color: var(--nc-coral-ink);
}

.nc-speed{
  display: flex;
  gap: 8px;
  align-items: center;
  padding-left: 6px;
}
.nc-speed__label{
  font-size: 12px;
  color: var(--nc-muted);
}
.nc-speed__select{
  border: 1px solid var(--nc-border);
  border-radius: 10px;
  padding: 6px 8px;
  font-weight: 600;
  color: var(--nc-ink);
  background: #fff;
}

.nc-player__progress{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(17,24,39,0.08);
}

.nc-time{
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-variant-numeric: tabular-nums;
  color: var(--nc-muted);
  font-size: 12px;
  margin-bottom: 6px;
}
.nc-time__sep{ opacity: 0.6; }

.nc-seek{
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(232,85,78,0.14);
  outline: none;
}
.nc-seek::-webkit-slider-thumb{
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nc-coral);
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  cursor: pointer;
}
.nc-seek::-moz-range-thumb{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nc-coral);
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  cursor: pointer;
}

.nc-player__bottom{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.nc-vol{
  width: 140px;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(17,24,39,0.10);
  outline: none;
}
.nc-vol::-webkit-slider-thumb{
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(17,24,39,0.75);
  border: 2px solid #fff;
  cursor: pointer;
}
.nc-vol::-moz-range-thumb{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(17,24,39,0.75);
  border: 2px solid #fff;
  cursor: pointer;
}

.nc-player__source{
  margin-left: auto;
  font-size: 13px;
  color: var(--nc-coral-ink);
  text-decoration: none;
  font-weight: 700;
}
.nc-player__source:hover{ text-decoration: underline; }

.nc-episode-list{
  margin-top: 12px;
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.nc-episode{
  text-align: left;
  border: 1px solid var(--nc-border);
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}
.nc-episode:hover{
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border-color: rgba(232,85,78,0.35);
}
.nc-episode:active{ transform: translateY(1px); }
.nc-episode__title{
  font-weight: 800;
  color: var(--nc-ink);
  line-height: 1.2;
}
.nc-episode__show{
  margin-top: 4px;
  font-size: 13px;
  color: var(--nc-muted);
}

/* Responsive */
@media (max-width: 640px){
  .nc-player__top{ grid-template-columns: 72px 1fr; }
  .nc-player__art{ width: 72px; height: 72px; border-radius: 12px; }
  .nc-vol{ width: 110px; }
}
