:root {
  --accent: #4f46e5;
  --accent2: #0ea5e9;
  --bg: #f5f6fa;
  --card: #ffffff;
  --text: #1f2430;
  --muted: #8a90a2;
  --border: #e8eaf0;
  --shadow: 0 6px 24px rgba(31, 36, 48, .08);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body { padding-bottom: 96px; }

a { color: inherit; text-decoration: none; }

/* 可访问性：跳转链接 / 屏幕阅读器专用 / 焦点可见 */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-size: 14px;
}
.skip-link:focus { left: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}
button:focus-visible, a:focus-visible, input:focus-visible { outline-offset: 3px; }

/* 尊重「减少动态效果」系统设置 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  padding: 34px 16px 44px;
  text-align: center;
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-title {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
}
.hero-sub {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: .92;
  line-height: 1.7;
}
.hero-sub strong { font-weight: 800; }

.container {
  max-width: 880px;
  margin: -28px auto 0;
  padding: 0 16px 40px;
}

/* Search card */
.search-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 22px;
}
@media (min-width: 720px) {
  /* 桌面端结果较长时，搜索区保持可及 */
  .search-card { position: sticky; top: 10px; z-index: 20; }
}

.field-label {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 8px;
  font-weight: 600;
}

.tabs {
  display: flex;
  gap: 8px;
  background: #f0f1f6;
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 14px;
}
.tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: .18s;
}
.tab.active {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(31,36,48,.08);
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: .15s;
  user-select: none;
}
.chip:hover { border-color: var(--accent); }
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.search-row {
  display: flex;
  gap: 10px;
}
.search-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  outline: none;
  transition: .15s;
}
.search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79,70,229,.12);
}
.search-btn {
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 0 26px;
  border-radius: 10px;
  cursor: pointer;
  transition: .15s;
  white-space: nowrap;
}
.search-btn:hover { filter: brightness(1.05); }
.search-btn:disabled { opacity: .6; cursor: default; }

.hint {
  min-height: 18px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.hint.error { color: #e5484d; }
.hint.ok { color: #16a34a; }

/* Detail panel */
.detail {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  margin-bottom: 16px;
}
.detail-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.detail-label { font-size: 14px; font-weight: 700; }
.detail-back {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: .15s;
}
.detail-back:hover { background: rgba(124,129,147,.1); color: var(--text); }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.detail-field { min-width: 0; }
.detail-k {
  display: block;
  font-size: 12px; color: var(--muted);
  margin-bottom: 5px;
}
.detail-row { display: flex; gap: 6px; align-items: stretch; }
.detail-input {
  flex: 1; min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text);
  background: #fafbfd;
  font-family: inherit;
  text-overflow: ellipsis;
}
.detail-input:focus { outline: none; border-color: var(--accent); }
.detail-btn {
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  border-radius: 8px;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: .15s;
}
.detail-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Results（有序列表，语义化 + 利于结构化数据理解） */
.results-wrap { margin-bottom: 8px; }
.results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.results-msg:empty { display: none; }
.results-msg {
  text-align: center;
  color: var(--muted);
  padding: 34px 0;
  font-size: 14px;
}

/* 骨架屏（加载态，避免布局跳动） */
.skeleton .sk {
  background: linear-gradient(90deg, #eef0f6 25%, #e4e7f0 37%, #eef0f6 63%);
  background-size: 400% 100%;
  animation: sk-shine 1.2s ease infinite;
  border-radius: 8px;
}
.sk-cover { width: 56px; height: 56px; border-radius: 10px; flex-shrink: 0; }
.sk-line { height: 13px; margin-bottom: 8px; }
.sk-line.w1 { width: 58%; }
.sk-line.w2 { width: 34%; }
.sk-btn { width: 76px; height: 36px; border-radius: 9px; flex-shrink: 0; }
@keyframes sk-shine {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.result-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  transition: transform .15s, box-shadow .15s;
}
.result-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(31, 36, 48, .12);
}
.result-card.playing {
  outline: 2px solid var(--accent);
}
.rc-cover {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.rc-main { flex: 1; min-width: 0; }
.rc-title {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-author {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  background: rgba(79,70,229,.1);
  border-radius: 6px;
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}
.rc-actions { display: flex; gap: 8px; flex-shrink: 0; }
.rc-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
  transition: .15s;
  white-space: nowrap;
}
.rc-btn:hover { border-color: var(--accent); color: var(--accent); }
.rc-btn.play { background: var(--accent); color: #fff; border-color: var(--accent); }
.rc-btn.play:hover { filter: brightness(1.07); color: #fff; }

.empty, .loading {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
  font-size: 14px;
}

.loadmore-wrap { text-align: center; margin-top: 18px; }
.loadmore-btn {
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: .15s;
}
.loadmore-btn:hover { background: var(--accent); color: #fff; }

.hidden { display: none !important; }

/* 站点说明 / 常见问题（正文内容区） */
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-top: 22px;
}
.info-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
}
.info-sub {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 700;
}
.info-card p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.85;
  color: #4b5265;
}
.info-card strong { color: var(--text); }
.info-list {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.95;
  color: #4b5265;
}
.info-list li { margin-bottom: 2px; }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.faq-item:first-of-type { border-top: none; }
.faq-item summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: '+';
  color: var(--accent);
  font-weight: 800;
  font-size: 16px;
  width: 16px;
  text-align: center;
}
.faq-item[open] summary::before { content: '−'; }
.faq-item p {
  margin: 6px 0 4px 24px;
  font-size: 13.5px;
  line-height: 1.85;
  color: #4b5265;
}

/* Footer */
.footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 24px 16px 12px;
  line-height: 1.8;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}
.footer-nav a { color: var(--muted); transition: .15s; }
.footer-nav a:hover { color: var(--accent); }
.footer-sub { opacity: .8; }

/* Player bar（毛玻璃透明底，网易云风格） */
.player-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-top: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 -4px 24px rgba(31,36,48,.10);
  display: flex;
  flex-direction: column;
  z-index: 50;
}
.pb-main {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

/* 内嵌歌词（网易云风格：透明底 + 逐字扫色，配色由全局 --lrc-on 提供，🎨 按钮可换） */
.pb-lrc-inline {
  --ktv-on: var(--lrc-on, #ec4141);
  --ktv-off: var(--lrc-off, rgba(31,36,48,.26));
  width: 100%;
  max-height: 138px;
  overflow-y: auto;
  text-align: center;
  padding: 14px 18px 16px;
  background: transparent;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}
.pb-lrc-inline::-webkit-scrollbar { width: 4px; }
.pb-lrc-inline::-webkit-scrollbar-thumb { background: rgba(124,129,147,.28); border-radius: 4px; }
.pb-lrc-inline .ktv-line { font-size: 16px; line-height: 2.4; }
.pb-lrc-inline .lrc-empty { padding-top: 6px; }

/* KTV 歌词行：--p 为逐字着色进度（0% ~ 100%）；配色由容器变量提供 */
.ktv-line {
  --p: 0%;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: .3px;
  margin: 2px 0;
  transform-origin: center;
  opacity: .58;
  transition: transform .28s ease, opacity .28s ease;
  background-image: linear-gradient(90deg,
      var(--ktv-on) 0%, var(--ktv-on) var(--p),
      var(--ktv-off) var(--p), var(--ktv-off) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.ktv-line.done { opacity: .38; --p: 100%; }
.ktv-line.active { opacity: 1; font-weight: 700; transform: scale(1.12); }

/* inline 布局下隐藏「词」按钮（歌词已在播放器内） */
.player-bar.is-inline .pb-icon.lrc-toggle { display: none; }
body.inline-player { padding-bottom: 200px; }
.pb-cover {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}
.pb-meta { min-width: 0; width: 150px; flex-shrink: 0; }
.pb-title {
  font-size: 14px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pb-author {
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pb-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .15s;
}
.pb-play:hover { filter: brightness(1.07); }
.pb-progress {
  flex: 1;
  height: 6px;
  background: #e3e5ee;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.pb-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
}
.pb-time {
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  width: 80px;
  text-align: right;
}
.pb-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: .15s;
}
.pb-icon:hover { background: rgba(124,129,147,.12); }
.pb-icon.active { color: var(--accent); background: rgba(124,129,147,.12); }

.pb-volume-wrap { position: relative; }
.pb-volume-pop {
  position: absolute;
  right: 50%;
  bottom: 44px;
  transform: translateX(50%);
  width: 34px;
  height: 110px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 -6px 24px rgba(31,36,48,.12);
  display: flex; align-items: center; justify-content: center;
  padding: 10px 0;
}
.pb-volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 86px;
  height: 4px;
  transform: rotate(-90deg);
  background: #e3e5ee;
  border-radius: 999px;
  outline: none;
}
.pb-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.pb-volume-slider::-moz-range-thumb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer; border: none;
}

/* 歌词微调（对齐不准时手动校准） */
.pb-offset-wrap { position: relative; }
.pb-offset-pop {
  position: absolute;
  right: 50%;
  bottom: 44px;
  transform: translateX(50%);
  width: 132px;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 -6px 24px rgba(31,36,48,.14);
  padding: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.pb-offset-val {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.pb-offset-btn {
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: .15s;
}
.pb-offset-btn:hover { background: rgba(236,65,65,.1); color: #ec4141; }

/* 歌词配色选择（🎨 按钮） */
.pb-color-wrap { position: relative; }
.pb-color-pop {
  position: absolute;
  right: 50%;
  bottom: 44px;
  transform: translateX(50%);
  width: 148px;
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 -6px 24px rgba(31,36,48,.14);
  padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.pb-color-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.pb-color-item {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: .15s;
  text-align: left;
}
.pb-color-item:hover { background: rgba(31,36,48,.07); }
.pb-color-item.active { background: rgba(31,36,48,.09); font-weight: 700; }
.pb-color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(31,36,48,.12);
}
.pb-color-item input[type="color"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}

.lrc-panel {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: 340px;
  max-width: calc(100% - 32px);
  height: 420px;
  max-height: 55vh;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31,36,48,.16);
  z-index: 60;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.lrc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.lrc-title { font-size: 14px; font-weight: 700; }
.lrc-close {
  width: 28px; height: 28px;
  border: none; border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer; font-size: 14px;
}
.lrc-close:hover { background: rgba(124,129,147,.12); }
.lrc-body {
  --ktv-on: var(--lrc-on, #ec4141);
  --ktv-off: var(--lrc-off, rgba(31,36,48,.24));
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 24px;
  text-align: center;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}
.lrc-empty { color: var(--muted); font-size: 13px; padding-top: 20px; }
.lrc-body .ktv-line { font-size: 14px; line-height: 2.4; }

.list-panel {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: 340px;
  max-width: calc(100% - 32px);
  height: 420px;
  max-height: 55vh;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(31,36,48,.14);
  z-index: 60;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.list-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.list-title { font-size: 14px; font-weight: 700; }
.list-close {
  width: 28px; height: 28px;
  border: none; border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer; font-size: 14px;
}
.list-close:hover { background: rgba(124,129,147,.12); }
.list-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
}
.list-empty { color: var(--muted); font-size: 13px; padding: 20px; text-align: center; }
.list-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: .15s;
}
.list-item:hover { background: rgba(124,129,147,.08); }
.list-item.active { background: rgba(67,97,238,.1); }
.list-item-cover {
  width: 40px; height: 40px;
  border-radius: 6px; object-fit: cover; background: #eee;
  flex-shrink: 0;
}
.list-item-info { min-width: 0; flex: 1; }
.list-item-title {
  font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.list-item-author {
  font-size: 12px; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.list-item-plat {
  font-size: 11px; color: var(--muted);
  background: rgba(124,129,147,.12);
  padding: 2px 6px; border-radius: 4px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .hero { padding: 26px 16px 38px; }
  .hero-title { font-size: 25px; }
  .container { padding: 0 12px 32px; }
  .search-card { padding: 14px; }
  .info-card { padding: 16px; }
  .info-title { font-size: 16px; }
  .detail-grid { grid-template-columns: 1fr; }
  .platforms { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .platforms::-webkit-scrollbar { display: none; }
  .chip { flex-shrink: 0; }
  .pb-meta { width: 80px; }
  .pb-time { width: 72px; font-size: 11px; }
  .pb-icon { width: 30px; height: 30px; font-size: 14px; }
  .pb-main { gap: 8px; padding: 10px 12px; }
  .pb-lrc-inline { max-height: 104px; padding: 10px 14px; }
  .pb-lrc-inline .ktv-line { font-size: 15px; line-height: 2.1; }
  body.inline-player { padding-bottom: 178px; }
  .search-btn { padding: 0 18px; }
}
