.lyrics-sync-wrap {
  max-height: min(42vh, 320px);
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0;
  text-align: center;
  touch-action: pan-y;
}

.lyrics-sync-host {
  overflow: hidden !important;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.lyrics-sync-host > .lyrics-sync-wrap {
  flex: 1;
  min-height: 0;
  max-height: none;
}

.lyrics-sync-wrap.is-scrubbable {
  cursor: grab;
  padding-top: min(22vh, 160px);
  padding-bottom: min(22vh, 160px);
  position: relative;
  touch-action: pan-y;
}

.lyrics-sync-wrap.is-scrubbable::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(201, 169, 110, 0.22);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.lyrics-sync-wrap.is-scrubbing {
  cursor: grabbing;
  scroll-behavior: auto;
}

.lyrics-sync-wrap.is-scrubbing .lyrics-sync-line {
  transition: color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.lyrics-sync-line {
  margin: 0.15rem 0;
  padding: 0.2rem 0.5rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display), 'Noto Serif SC', serif;
  letter-spacing: 0.04em;
  transition: color 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
  opacity: 0.55;
  transform: scale(0.98);
}

.lyrics-sync-line.is-past {
  opacity: 0.72;
  color: rgba(255, 255, 255, 0.58);
  transform: scale(1);
}

.lyrics-sync-line.is-active {
  opacity: 1;
  color: var(--color-gold, #C9A96E);
  transform: scale(1.03);
  text-shadow: 0 0 24px rgba(201, 169, 110, 0.25);
}

.lyrics-sync-line.is-scrub-preview {
  opacity: 1;
  color: #f0ddb0;
  transform: scale(1.06);
  text-shadow: 0 0 28px rgba(201, 169, 110, 0.45);
}

.lyrics-sync-wrap.is-scrubbable .lyrics-sync-line {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
}

.lyrics-sync-gap {
  height: 0.65rem;
}

.lyrics-sync-empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin: 0;
}

.listen-lyrics-body.lyrics-sync-wrap {
  max-height: min(50vh, 360px);
  white-space: normal;
}

.lyrics-theater__lines.lyrics-sync-wrap {
  max-height: none;
}
