/* --- playing screen --- */
.artwork-info-wrap {
  position: relative;
  width: min(46vw, 210px);
  border-radius: 20px;
  overflow: hidden;
}
.artwork-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.artwork {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px var(--shadow-1);
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.now-playing-text {
  text-align: center;
  margin-top: 16px;
  max-width: 340px;
}
.podcast-name {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 4px;
}

.progress-wrap {
  width: min(80vw, 340px);
  margin-top: 22px;
}
.progress-bar {
  height: 4px;
  background: var(--track-fill);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width .2s linear;
}
.time-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--dim);
  margin-top: 6px;
}

.seek-flash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(0,0,0,.4);
  font-size: min(15vw, 64px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .1s ease;
}
.seek-flash.show {
  opacity: 1;
  transition: opacity .08s ease;
}

.info-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: var(--surface-2);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.info-overlay.show {
  opacity: 1;
}
.info-overlay-text {
  height: 100%;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg);
  white-space: pre-line;
}

#audio-player { display: none; }
