/* ========================================
   全局重置 + 基础规则 + 主题色变量
   ======================================== */
:root {
  --color-primary: #6D4C41;
  --color-primary-light: #EFEBE9;
  --color-primary-bg: #F5F0ED;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "思源宋体", serif;
  color: #333;
  background: #F8F5F2;
  transition: background 0.3s ease, color 0.3s ease;
}
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

/* 详情跳转链接基础样式 不破坏原生布局 */
.detail-link {
  text-decoration: none;
  color: inherit;
}
.detail-link:hover .pc-content-name,
.detail-link:hover .mobile-content-name {
  color: var(--color-primary);
}

/* ========================================
   轮播通用基础样式（保留兼容）
   ======================================== */
.banner-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.banner-item.active {
  opacity: 1;
}
.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}
.banner-dot.active {
  width: 20px;
  border-radius: 4px;
  background: #fff;
}

/* ========================================
   默认：手机端样式 (<1024px)
   ======================================== */
/* 电脑端元素默认全部隐藏 */
.pc-header,
.pc-sidebar,
.pc-main,
.pc-player-bar,
.pc-player-mask,
.pc-player-panel {
  display: none;
}

/* 手机端底部导航 */
.mobile-navbar,
.app-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #E8E0D9;
  display: flex;
  z-index: 999;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.mobile-navbar__item,
.app-navbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
  cursor: pointer;
}
.mobile-navbar__item--active,
.app-navbar__item--active {
  color: var(--color-primary);
}
.mobile-navbar__icon,
.app-navbar__icon {
  width: 22px;
  height: 22px;
  background: currentColor;
  opacity: 0.8;
  border-radius: 2px;
}

/* 手机端顶部：品牌标识 + 搜索栏 */
.mobile-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 16px 12px;
  background: #fff;
  border-bottom: 1px solid #E8E0D9;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.mobile-header__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.mobile-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #F5F0ED;
  border-radius: 20px;
  transition: background 0.3s ease;
}
.mobile-search__icon {
  width: 16px;
  height: 16px;
  color: #999;
}
.mobile-search__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: inherit;
}

/* 手机端主内容：极简信息流 */
.mobile-main,
.page-main {
  padding: 20px 16px 80px;
}

.mobile-content-header {
  margin-bottom: 20px;
}
.mobile-content-title {
  font-size: 22px;
  font-weight: 600;
  color: #3E2723;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}
.mobile-content-subtitle {
  font-size: 13px;
  color: #8D6E63;
  margin: 0;
  transition: color 0.3s ease;
}

.mobile-content-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-content-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-content-item:active {
  background: #fff;
}

/* 修复：手机端封面链接 撑满容器 */
.mobile-content-cover .detail-link {
  display: block;
  width: 100%;
  height: 100%;
}
/* 修复：手机端标题链接 块级显示 */
.mobile-content-info .detail-link {
  display: block;
}

.mobile-content-cover {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.mobile-content-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-content-info {
  flex: 1;
  min-width: 0;
}
.mobile-content-name {
  font-size: 15px;
  font-weight: 500;
  color: #3E2723;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}
.mobile-content-meta {
  font-size: 12px;
  color: #8D6E63;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}
.mobile-content-dot {
  opacity: 0.6;
}

.mobile-content-play {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  position: relative;
  z-index: 10;
}
.mobile-content-play .play-icon {
  width: 0;
  height: 0;
  border-left: 9px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
}

.mobile-content-empty {
  text-align: center;
  padding: 40px 0;
  color: #A1887F;
  font-size: 13px;
}

/* ========================================
   电脑端样式 (≥1024px)
   ======================================== */
@media (min-width: 1024px) {
  /* ========== 强制隐藏所有手机端元素 ========== */
  body .mobile-navbar,
  body .app-navbar,
  body .mobile-header,
  body .mobile-main,
  body .page-main,
  body .banner-section,
  body .category-section,
  body .content-block,
  body #fullPlayer.full-player {
    display: none !important;
  }

  /* ========== 强制显示所有电脑端元素 ========== */
  body .pc-header,
  body .pc-sidebar,
  body .pc-main,
  body .pc-player-bar {
    display: block !important;
  }

  /* 全局布局偏移 高权重加固 */
  html body {
    padding: 64px 0 72px 240px !important;
    background: #F8F5F2 !important;
    margin: 0 !important;
  }

  /* ========== 1. 顶部通栏 ========== */
  .pc-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    height: 64px !important;
    background: #fff !important;
    border-bottom: 1px solid #E8E0D9 !important;
    box-shadow: 0 1px 3px rgba(109, 76, 65, 0.03) !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
  }
  .pc-header__inner {
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .pc-header__left {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .pc-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  .pc-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    height: 100%;
  }
  .pc-nav__item {
    font-size: 15px;
    color: #333;
    cursor: pointer;
    padding: 22px 0;
    line-height: 1;
    transition: color 0.2s;
    position: relative;
  }
  .pc-nav__item:hover {
    color: var(--color-primary);
  }
  .pc-nav__item--active {
    color: var(--color-primary);
    font-weight: 500;
  }
  .pc-nav__item--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
  }
  .pc-header__center {
    flex: 0 0 420px;
  }
  .pc-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #F5F0ED;
    border-radius: 24px;
    transition: background 0.2s;
  }
  .pc-search-box:hover {
    background: #EFE5DC;
  }
  .pc-search__icon {
    width: 16px;
    height: 16px;
    color: #999;
    flex-shrink: 0;
  }
  .pc-search__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: inherit;
  }
  .pc-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .pc-header__btn {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
  }
  .pc-header__btn:hover {
    color: var(--color-primary);
  }
  .pc-header__btn--vip {
    padding: 5px 14px;
    background: linear-gradient(90deg, #E8C79B, #D4A574);
    color: #5D4037;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
  }
  .pc-header__btn--vip:hover {
    color: #5D4037;
    opacity: 0.9;
  }
  .pc-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary-light);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  /* ========== 2. 左侧分类栏 ========== */
  .pc-sidebar {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    bottom: 72px !important;
    z-index: 200 !important;
    width: 240px !important;
    background: #fff !important;
    border-right: 1px solid #E8E0D9 !important;
    padding: 24px 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
  }
  .pc-sidebar::-webkit-scrollbar {
    width: 4px;
  }
  .pc-sidebar::-webkit-scrollbar-thumb {
    background: #D7CCC8;
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  .pc-sidebar__group {
    margin-bottom: 28px;
  }
  .pc-sidebar__title {
    padding: 0 40px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #8D6E63;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }
  .pc-sidebar__item {
    padding: 12px 40px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    line-height: 1.5;
  }
  .pc-sidebar__item:hover {
    background: var(--color-primary-bg);
    color: var(--color-primary);
  }
  .pc-sidebar__item--active {
    color: var(--color-primary);
    font-weight: 500;
    background: var(--color-primary-bg);
    border-left-color: var(--color-primary);
  }

  /* ========== 3. 主内容区：极简单列信息流 ========== */
  .pc-main {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 60px;
    box-sizing: border-box;
  }

  .pc-content-header {
    margin-bottom: 32px;
  }
  .pc-content-title {
    font-size: 28px;
    font-weight: 600;
    color: #3E2723;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
  }
  .pc-content-subtitle {
    font-size: 14px;
    color: #8D6E63;
    margin: 0;
    transition: color 0.3s ease;
  }

  .pc-content-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pc-content-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .pc-content-item:hover {
    background: #fff;
    box-shadow: 0 2px 12px rgba(109, 76, 65, 0.06);
  }

  /* 修复：封面链接 撑满容器 图片尺寸正常生效 */
  .pc-content-cover .detail-link {
    display: block;
    width: 100%;
    height: 100%;
  }
  /* 修复：标题链接 块级显示 不破坏排版 */
  .pc-content-info .detail-link {
    display: block;
  }

  .pc-content-cover {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .pc-content-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pc-content-info {
    flex: 1;
    min-width: 0;
  }
  .pc-content-name {
    font-size: 16px;
    font-weight: 500;
    color: #3E2723;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
  }
  .pc-content-meta {
    font-size: 13px;
    color: #8D6E63;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
  }
  .pc-content-dot {
    opacity: 0.6;
  }
  .pc-content-desc {
    font-size: 13px;
    color: #795548;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
  }

  .pc-content-play {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s, background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
  }
  .pc-content-item:hover .pc-content-play {
    opacity: 1;
  }
  .pc-content-play:hover {
    transform: scale(1.05);
  }
  .play-icon {
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
  }

  .pc-content-empty {
    text-align: center;
    padding: 60px 0;
    color: #A1887F;
    font-size: 14px;
  }

  /* ========== 4. 底部全局播放条 ========== */
  .pc-player-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    height: 72px !important;
    background: #fff !important;
    border-top: 1px solid #E8E0D9 !important;
    box-shadow: 0 -2px 10px rgba(109, 76, 65, 0.04) !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
    cursor: pointer;
  }
  .pc-player-bar__inner {
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .pc-player__left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 260px;
  }
  .pc-player__cover {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
  }
  .pc-player__info {
    flex: 1;
    min-width: 0;
  }
  .pc-player__title {
    font-size: 14px;
    color: #3E2723;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease;
  }
  .pc-player__author {
    font-size: 12px;
    color: #8D6E63;
    margin: 2px 0 0 0;
    transition: color 0.3s ease;
  }
  .pc-player__like {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .pc-player__like:hover {
    opacity: 1;
  }
  .pc-player__center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .pc-player__controls {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .pc-player__btn {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.7;
    position: relative;
    transition: opacity 0.2s;
    color: #6D4C41;
  }
  .pc-player__btn:hover {
    opacity: 1;
  }
  .pc-player__btn--play {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 1;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .pc-player__btn--play:hover {
    transform: scale(1.05);
  }
  .pc-player__btn--play::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-30%, -50%);
    width: 0; height: 0;
    border-left: 10px solid #fff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: all 0.2s ease;
  }
  /* 播放中状态：显示暂停双竖线图标 */
  .pc-player__btn--play.is-playing::after {
    border: none;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: transparent;
    box-shadow: 
      -3px 0 0 #fff,
      3px 0 0 #fff;
  }

  .pc-player__progress {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 70%;
    font-size: 12px;
    color: #8D6E63;
    transition: color 0.3s ease;
  }
  .pc-player__bar {
    flex: 1;
    height: 4px;
    background: #EFEBE9;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
  }
  .pc-player__bar-inner {
    width: 0%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.1s linear, background 0.3s ease;
  }
  .pc-player__right {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 200px;
    justify-content: flex-end;
  }
  .pc-player__volume-bar {
    width: 80px;
    height: 4px;
    background: #EFEBE9;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
  }
  .pc-player__volume-inner {
    width: 60%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    transition: background 0.3s ease;
  }

  /* ========== 5. 电脑端QQ音乐式播放弹窗 ========== */
  .pc-player-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .pc-player-mask.is-active {
    opacity: 1;
    visibility: visible;
  }

  .pc-player-panel {
    position: fixed;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%) translateY(100%);
    width: 720px;
    height: 520px;
    background: linear-gradient(160deg, #3E2723 0%, #2C1B18 100%);
    border-radius: 16px 16px 0 0;
    z-index: 1001;
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    display: block;
  }
  .pc-player-panel.is-active {
    transform: translateX(-50%) translateY(0);
  }

  .pc-player-panel__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
  }
  .pc-player-panel__close:hover {
    background: rgba(255,255,255,0.2);
  }

  .pc-player-panel__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 60px;
    box-sizing: border-box;
  }

  /* 左侧旋转封面 */
  .pc-player-panel__disc {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #1a0f0d;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    animation: pcDiscSpin 20s linear infinite;
    animation-play-state: paused;
  }
  .pc-player-panel__disc.is-playing {
    animation-play-state: running;
  }
  .pc-player-panel__disc img {
    width: 65%;
    height: 65%;
    border-radius: 50%;
    object-fit: cover;
  }
  .pc-player-panel__disc::after {
    content: '';
    position: absolute;
    width: 12%;
    height: 12%;
    border-radius: 50%;
    background: #2C1B18;
    border: 4px solid #4E342E;
  }
  @keyframes pcDiscSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* 右侧信息+控制区 */
  .pc-player-panel__info {
    width: 280px;
    color: #fff;
  }
  .pc-player-panel__name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .pc-player-panel__author {
    font-size: 14px;
    color: #BCAAA4;
    margin-bottom: 40px;
  }
  .pc-player-panel__progress {
    margin-bottom: 30px;
  }
  .pc-player-panel__bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
  }
  .pc-player-panel__bar-inner {
    height: 100%;
    width: 0%;
    background: #D7CCC8;
    border-radius: 2px;
    position: relative;
  }
  .pc-player-panel__time {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #BCAAA4;
    margin-top: 8px;
  }
  .pc-player-panel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
  .pc-player-panel__btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .pc-player-panel__btn:hover {
    opacity: 1;
  }
  .pc-player-panel__btn--play {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    color: #3E2723;
    font-size: 22px;
    opacity: 1;
  }
}

/* ========================================
   深色模式：与浏览器地址栏 theme-color 同步
   ======================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --color-primary: #D7CCC8;
    --color-primary-light: #4E342E;
    --color-primary-bg: #3E2723;
  }

  body {
    background: #2C1B18;
    color: #EFEBE9;
  }

  /* ---------- 手机端深色适配 ---------- */
  .mobile-header,
  .mobile-navbar {
    background: #3E2723;
    border-color: #5D4037;
  }

  .mobile-search-box {
    background: #4E342E;
  }

  .mobile-content-title,
  .mobile-content-name {
    color: #EFEBE9;
  }
  .mobile-content-subtitle,
  .mobile-content-meta {
    color: #BCAAA4;
  }

  .mobile-content-item:active {
    background: #4E342E;
  }

  /* ---------- 电脑端深色适配 ---------- */
  @media (min-width: 1024px) {
    html body {
      background: #2C1B18 !important;
      color: #EFEBE9 !important;
    }

    .pc-header,
    .pc-sidebar,
    .pc-player-bar {
      background: #3E2723 !important;
      border-color: #5D4037 !important;
      box-shadow: none !important;
    }

    .pc-nav__item {
      color: #EFEBE9;
    }

    .pc-search-box {
      background: #4E342E;
    }
    .pc-search-box:hover {
      background: #5D4037;
    }

    .pc-header__btn {
      color: #BCAAA4;
    }

    .pc-sidebar__title {
      color: #A1887F;
    }
    .pc-sidebar__item {
      color: #EFEBE9;
    }

    .pc-content-title,
    .pc-content-name,
    .pc-player__title {
      color: #EFEBE9;
    }
    .pc-content-subtitle,
    .pc-content-meta,
    .pc-content-desc,
    .pc-player__author,
    .pc-player__progress {
      color: #BCAAA4;
    }

    .pc-content-item:hover {
      background: #3E2723;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    }

    .pc-player__bar,
    .pc-player__volume-bar {
      background: #4E342E;
    }

    .pc-sidebar::-webkit-scrollbar-thumb {
      background: #5D4037;
    }

    .pc-avatar {
      background: #4E342E;
    }

    /* 深色模式下播放按钮暂停图标保持白色 */
    .pc-player__btn--play.is-playing::after {
      box-shadow: 
        -3px 0 0 #fff,
        3px 0 0 #fff;
    }
  }
}