/* =============================================
   CookieTune 播放器核心、诗画意象大画卷与高清鉴赏 (player.css)
   ============================================= */

/* 主播放器卡片舞台 */
.player-stage-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  position: relative;
  overflow: hidden;
  gap: 14px;
}

/* 视觉风格切换栏 (🖼️ 诗画意境卷 vs 💿 黑胶唱片台) */
.visual-style-switch-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  width: fit-content;
  margin: 0 auto 4px auto;
}

.style-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.style-switch-btn:hover {
  color: #fff;
}

.style-switch-btn.active {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 117, 140, 0.4);
}

/* 播放器模式视图切换容器 */
.player-view {
  display: none;
  width: 100%;
  animation: fadeIn 0.4s ease forwards;
}

.player-view.active {
  display: flex;
}

/* 听歌模式舞台 */
.audio-view {
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* =============================================
   🌟 核心亮点：沉浸式诗词意境大画卷展台 (Poetic Art Stage)
   ============================================= */
.poetic-art-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.art-frame-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.8;
  max-height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  cursor: zoom-in;
  background: #181020;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.art-frame-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75), inset 0 0 0 1px var(--primary-color);
}

.poetic-art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 12s ease-in-out;
  animation: art-breathe 16s ease-in-out infinite alternate;
}

.art-inspect-tag {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.art-frame-card:hover .art-inspect-tag {
  opacity: 1;
  background: var(--primary-gradient);
  border-color: #fff;
  transform: scale(1.05);
}

/* 视角 2：拟真黑胶唱片台 */
.vinyl-stage {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 4px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vinyl-disc {
  position: relative;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  background: radial-gradient(circle, #2b2b2b 0%, #111111 60%, #000000 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  animation: spin-vinyl 18s linear infinite;
  animation-play-state: paused;
}

.vinyl-disc.playing {
  animation-play-state: running;
}

.vinyl-grooves {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.03),
              inset 0 0 0 28px rgba(255, 255, 255, 0.02),
              inset 0 0 0 45px rgba(255, 255, 255, 0.02);
}

.vinyl-center-cover {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.vinyl-center-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.center-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #000;
}

/* 唱针 */
.stylus-arm {
  position: absolute;
  top: -10px;
  right: 0px;
  width: 60px;
  height: 80px;
  background: transparent;
  transform-origin: 15px 10px;
  transform: rotate(-30deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  pointer-events: none;
}

.stylus-arm::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.stylus-arm::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 16px;
  width: 5px;
  height: 60px;
  background: linear-gradient(to right, #bbb, #eee);
  border-radius: 3px;
  transform: rotate(-15deg);
  box-shadow: 2px 4px 6px rgba(0,0,0,0.3);
}

.stylus-arm.playing {
  transform: rotate(0deg);
}

/* 音频波形律动画布 */
.audio-visualizer {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.9;
}

/* 歌词卡片容器 */
.lyrics-card {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 8px 18px 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: inset 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: border-color 0.3s ease;
}

.lyrics-card:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* 歌词拖拽手柄（通用） */
.lyrics-resize-handle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ns-resize;
  user-select: none;
  transition: var(--transition-smooth);
}

.lyrics-top-resize {
  height: 10px;
  margin-top: -4px;
}

.resize-bar {
  width: 36px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

/* 底部向下拉大手柄 */
.lyrics-bottom-resize {
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 4px;
  margin-bottom: -4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  cursor: s-resize;
  transition: var(--transition-smooth);
}

.lyrics-bottom-resize:hover {
  background: rgba(255, 255, 255, 0.12);
  border-top-color: var(--primary-color);
}

.resize-bar-bottom {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.resize-pull-hint {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.lyrics-bottom-resize:hover .resize-bar-bottom {
  background: var(--primary-color);
  width: 70px;
}

.lyrics-bottom-resize:hover .resize-pull-hint {
  color: var(--primary-color);
}

/* 歌词控制工具栏 */
.lyrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
  gap: 10px;
  flex-wrap: wrap;
}

.lyrics-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lyrics-badge {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-color);
}

/* 动效风格切换器 */
.lyrics-fx-picker {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-full);
  padding: 2px 4px;
}

.fx-btn {
  padding: 3px 8px;
  background: transparent;
  border: none;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.fx-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.fx-btn.active {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 117, 140, 0.4);
}

.lyrics-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 字体大小调节 */
.lyrics-font-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-full);
  padding: 2px 6px;
}

.font-ctrl-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.font-ctrl-btn:hover {
  background: var(--primary-color);
  color: #000;
}

.font-size-label {
  font-size: 11px;
  color: var(--text-muted);
  min-width: 16px;
  text-align: center;
}

.lrc-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lrc-action-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-1px);
}

/* 歌词主滚动区域 */
.lyrics-scroller {
  height: 240px;
  min-height: 120px;
  max-height: 600px;
  overflow-y: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px 10px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.lyrics-scroller::-webkit-scrollbar {
  display: none;
}

/* 歌词文本基础样式 */
.lyric-line {
  font-family: var(--theme-font, var(--font-serif));
  font-size: var(--lyric-base-size, 16px);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 6px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  line-height: 1.6;
  position: relative;
  letter-spacing: 0.5px;
}

.lyric-line:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* 上一句渐隐消失特效 */
.lyric-line.dissolve {
  animation: lyric-dissolve 0.6s ease forwards;
}

/* 1. 🖌️ 水墨晕染特效 (Ink Bloom & Diffuse) */
.lyrics-scroller.fx-ink .lyric-line.active {
  color: #ffffff;
  font-size: calc(var(--lyric-base-size, 16px) * 1.35);
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px var(--primary-color), 0 0 45px rgba(254, 207, 239, 0.6);
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 154, 158, 0.1) 60%, transparent 100%);
  animation: ink-wash-bloom 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  letter-spacing: 1.2px;
}

/* 2. 🌸 樱花流光呼吸特效 (Sakura Shimmer) */
.lyrics-scroller.fx-sakura .lyric-line.active {
  color: #fff;
  font-size: calc(var(--lyric-base-size, 16px) * 1.35);
  font-weight: 800;
  text-shadow: 0 0 18px #ff758c, 0 0 35px #ff7eb3;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 117, 140, 0.25) 50%, transparent 100%);
  animation: sakura-breath 1.8s ease-in-out infinite alternate;
  letter-spacing: 1px;
}

/* 3. ✨ 梦幻霓虹特效 (Dreamy Neon) */
.lyrics-scroller.fx-neon .lyric-line.active {
  color: #fff;
  font-size: calc(var(--lyric-base-size, 16px) * 1.38);
  font-weight: 900;
  text-shadow: 0 0 10px #00f2fe, 0 0 25px #4facfe, 0 0 40px #f355da;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 242, 254, 0.2) 50%, transparent 100%);
  animation: neon-shimmer 1.5s infinite alternate;
  letter-spacing: 1.5px;
}

/* 4. 🎵 纯享经典特效 (Classic Smooth) */
.lyrics-scroller.fx-classic .lyric-line.active {
  color: #ffffff;
  font-size: calc(var(--lyric-base-size, 16px) * 1.25);
  font-weight: 800;
  text-shadow: 0 0 14px var(--primary-color);
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

/* 动效关键帧动画 */
@keyframes art-breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.05) translate(-1%, -1%); }
  100% { transform: scale(1.03) translate(1%, 1%); }
}

@keyframes ink-wash-bloom {
  0% {
    filter: blur(10px) brightness(1.6);
    transform: scale(0.92);
    opacity: 0.3;
  }
  60% {
    filter: blur(2px) brightness(1.2);
    transform: scale(1.06);
    opacity: 0.95;
  }
  100% {
    filter: blur(0px) brightness(1);
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes sakura-breath {
  0% {
    transform: scale(1.02);
    text-shadow: 0 0 15px #ff758c;
  }
  100% {
    transform: scale(1.07);
    text-shadow: 0 0 25px #ff7eb3, 0 0 45px rgba(255, 255, 255, 0.8);
  }
}

@keyframes neon-shimmer {
  0% {
    transform: scale(1.03);
    text-shadow: 0 0 10px #00f2fe, 0 0 20px #f355da;
  }
  100% {
    transform: scale(1.06);
    text-shadow: 0 0 20px #00f2fe, 0 0 35px #f355da, 0 0 50px #fff;
  }
}

@keyframes lyric-dissolve {
  0% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
}

.no-lyrics-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 0;
  color: var(--text-muted);
}

.no-lyrics-icon {
  font-size: 32px;
}

.no-lyrics-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.upload-lrc-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
  transition: var(--transition-smooth);
}

.upload-lrc-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 117, 140, 0.6);
}

/* MV 影院模式视图 */
.video-view {
  width: 100%;
}

.video-theater-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.video-theater-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-overlay-play {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-theater-wrapper:hover .video-overlay-play {
  opacity: 1;
}

.play-orb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 117, 140, 0.7);
  transform: scale(0.9);
  transition: transform 0.2s ease;
}

.play-orb:hover {
  transform: scale(1.1);
}

/* 歌曲元信息栏 */
.current-track-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.meta-main {
  flex: 1;
  min-width: 0;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.current-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.original-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: #3e2700;
}

.category-badge {
  font-size: 11px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text-muted);
}

.current-artist {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 互动按键组 */
.track-interactions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interact-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-spring);
}

.interact-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 117, 140, 0.4);
}

.like-btn.liked .btn-heart {
  color: #ff4757;
  animation: heart-pop 0.4s ease;
}

.switch-media-btn {
  background: var(--primary-gradient);
  border-color: rgba(255, 255, 255, 0.4);
}

/* 播放进度条与控制面板 */
.player-controls-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.time-label {
  font-size: 11px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  width: 36px;
}

.progress-track {
  position: relative;
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  cursor: pointer;
}

.progress-buffered {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  width: 0%;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
  width: 0%;
  box-shadow: 0 0 10px rgba(255, 117, 140, 0.7);
}

.progress-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.progress-track:hover .progress-handle {
  opacity: 1;
}

/* 控制按钮工具栏 */
.controls-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ctrl-btn {
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-spring);
}

.ctrl-btn:hover {
  background: var(--primary-gradient);
  transform: scale(1.12);
  box-shadow: 0 4px 15px rgba(255, 117, 140, 0.4);
}

.main-play-btn {
  width: 56px;
  height: 56px;
  font-size: 24px;
  background: var(--primary-gradient);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 22px rgba(255, 117, 140, 0.6);
}

.main-play-btn:hover {
  transform: scale(1.14);
  box-shadow: 0 8px 28px rgba(255, 117, 140, 0.8);
}

/* 音量控制组 */
.volume-control-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-slider-wrapper {
  width: 75px;
  display: flex;
  align-items: center;
}

.volume-slider-wrapper input[type="range"] {
  width: 100%;
  accent-color: var(--primary-color);
  cursor: pointer;
}

/* 底部专属留言抽屉 */
.comments-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(20, 12, 28, 0.92);
  border-top: 1px solid var(--glass-border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
  z-index: 100;
  transform: translateY(105%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.comments-drawer.open {
  transform: translateY(0%);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 18px;
}

.drawer-song-name {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
}

.comments-body {
  padding: 20px 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 留言表单 */
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
}

.form-row-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.avatar-picker-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-size: 12px;
  color: var(--text-muted);
}

.avatar-chips {
  display: flex;
  gap: 6px;
}

.avatar-chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.avatar-chip.active {
  background: var(--primary-gradient);
  border-color: #fff;
  transform: scale(1.15);
}

.nickname-mood-group {
  display: flex;
  gap: 8px;
  flex: 1;
}

.text-input, .mood-select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.text-input { flex: 1; }

.mood-select {
  background: #251a30;
  color: #fff;
}

.form-row-bottom {
  display: flex;
  gap: 10px;
}

.textarea-input {
  flex: 1;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  resize: none;
  outline: none;
}

.textarea-input:focus, .text-input:focus {
  border-color: var(--primary-color);
}

.submit-comment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 20px;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-comment-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 117, 140, 0.5);
}

/* 留言列表项 */
.comments-list-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comments-subheading {
  font-size: 14px;
  color: var(--text-muted);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.comment-card {
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.comment-avatar-bubble {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.comment-content-area {
  flex: 1;
}

.comment-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.comment-author-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.comment-mood-tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.comment-text-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.comment-time-stamp {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* =============================================
   高清诗画意境原图大图鉴赏灯箱 (HD Artwork Lightbox)
   ============================================= */
.artwork-lightbox-card {
  width: 92vw;
  max-width: 900px;
  max-height: 90vh;
  background: rgba(14, 8, 20, 0.96);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.artwork-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-title-group h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: #fff;
}

.lightbox-artist {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
}

.artwork-lightbox-body {
  flex: 1;
  min-height: 200px;
  max-height: calc(90vh - 120px);
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: var(--radius-md);
  padding: 8px;
}

.artwork-lightbox-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.artwork-lightbox-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* 主题壁纸弹窗 */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.theme-modal-card {
  width: 100%;
  max-width: 620px;
  background: rgba(26, 16, 36, 0.95);
  padding: 24px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 16px;
}

.theme-section h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.upload-wp-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-pill-btn {
  padding: 10px 22px;
  background: var(--primary-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 117, 140, 0.4);
}

.secondary-pill-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

@keyframes spin-vinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heart-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
