/* 基础布局与主题色 */
:root {
  --primary: #e91e63;
  --bg: #101014;
  --panel: #1a1a20;
  --text: #f0f0f3;
  --muted: #a0a3ad;
  --link: #61dafb;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
html { overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 1200px; max-width: 95vw; margin: 0 auto; }
.header {
  background: linear-gradient(180deg, #18181f 0%, #14141a 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}
.site-title { font-weight: 700; color: var(--text); font-size: 20px; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; display: block; vertical-align: middle; }
@media (max-width: 480px) { .logo-img { height: 30px; } }
.nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding: 3px;
  background: rgba(255,255,255,.03);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.05);
}
.nav a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.nav a:hover {
  background: linear-gradient(135deg, #e91e63, #d81b60);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(233,30,99,.4);
}
.nav a.active {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(233,30,99,.35);
}
.search-bar { margin-left: auto; display: flex; gap: 6px; }
.search-input {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 20px;
  min-width: 200px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.search-input:focus {
  border-color: rgba(233,30,99,.4);
  background: rgba(255,255,255,.06);
}
.search-input::placeholder { color: #666; }
.search-btn {
  padding: 9px 18px;
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(233,30,99,.35);
}

.main { padding: 20px 0; }
.grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.col { background: var(--panel); border: 1px solid #2a2a33; border-radius: 10px; padding: 14px;
  /* 添加阴影效果提升层次感 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 - 平板设备 */
@media (max-width: 768px) {
  .container { width: auto; max-width: 100%; padding-left: 12px; padding-right: 12px; overflow-x: hidden; }
  .header .container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 12px;
  }
  .site-title { flex: 1; font-size: 18px; }
  .search-bar {
    margin-left: 0;
    order: 3;
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
  }
  .search-input {
    min-width: 0;
    flex: 1;
  }
  .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
}

/* 响应式设计 - 移动设备 */
@media (max-width: 480px) {
  .search-input {
    font-size: 13px;
    padding: 8px 12px;
    min-width: 0;
  }
  .search-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
  .main {
    padding: 16px 0;
  }
  .col {
    padding: 12px;
  }
}
.section-title { font-weight: 700; font-size: 18px; margin: 8px 0 12px; }
.list { list-style: none; padding: 0; margin: 0; }
.list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #2a2a33; }
.list li:last-child { border-bottom: none; }
.muted { color: var(--muted); font-size: 12px; }
.badge { display: inline-block; padding: 2px 8px; background: #2c2f36; border: 1px solid #3a3f49; border-radius: 999px; font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   推荐歌单 Swiper 卡片
   ═══════════════════════════════════════════════════════════════ */
.recommend-section {
  background: var(--panel);
  border: 1px solid #2a2a33;
  border-radius: 12px;
  padding: 20px 0 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 14px;
}
.section-header .section-title {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .3px;
}
.section-more {
  font-size: 13px;
  color: var(--muted);
  transition: color .2s;
}
.section-more:hover { color: var(--primary); text-decoration: none; }

/* 自定义导航箭头 */
.swiper-arrows {
  display: flex;
  gap: 6px;
}
.swiper-btn-prev, .swiper-btn-next {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: #2a2a33;
  color: var(--text);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.swiper-btn-prev:hover, .swiper-btn-next:hover {
  background: var(--primary);
}

/* Swiper 容器 */
.recommend-swiper {
  padding: 0 20px;
  overflow: hidden;
  min-height: 140px; /* 即使 JS 未加载也有可见高度 */
}
.recommend-swiper .swiper-slide {
  width: 172px;
  height: auto;
}
/* Swiper 未初始化时的 fallback：横向排列 */
.recommend-swiper .swiper-wrapper {
  display: flex;
  gap: 14px;
}

/* 卡片 */
.card-cover {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: 10px;
  overflow: hidden;
  background: #1c1c24;
  border: 1px solid #2a2a33;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card-cover:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(233,30,99,.2);
  text-decoration: none;
}

/* 图片区域 */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 62.5%; /* 16:10 aspect ratio via padding hack */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
}
.card-img-wrap img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
  border-radius: 10px 10px 0 0;
}
.card-cover:hover .card-img-wrap img {
  transform: scale(1.08);
}

/* 渐变色占位图标（无真实封面时展示） */
.card-img-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: transform .4s;
  z-index: 1;
}
.card-cover:hover .card-img-icon {
  transform: scale(1.15);
}

/* 标题 */
.card-body {
  padding: 10px 10px 12px;
}
.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   首页双栏布局
   ═══════════════════════════════════════════════════════════════ */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-bottom: 24px;
  min-width: 0;
  overflow: hidden;
}
.home-card {
  background: var(--panel);
  border: 1px solid #2a2a33;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  min-width: 0;
  overflow: hidden;
}

/* ── 最近更新列表 ── */
.update-list {
  list-style: none; padding: 0; margin: 0;
}
.update-list li {
  border-bottom: 1px solid #1f1f28;
  list-style: none;
}
.update-list li:last-child { border-bottom: none; }
.update-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: background .2s;
  min-width: 0;
  overflow: hidden;
}
.update-link:hover {
  background: #1f1f28;
  text-decoration: none;
}
.update-thumb {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: #1c1c24;
  border-radius: 8px;
  font-size: 22px;
  overflow: hidden;
  border: 1px solid #2a2a33;
}
.update-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.update-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.update-title {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.update-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.cat-tag {
  padding: 1px 8px;
  background: rgba(233,30,99,.15);
  color: var(--primary);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
}
.time-tag {
  color: var(--muted);
}

/* ── 热门排名 ── */
.rank-list {
  list-style: none; padding: 0; margin: 0;
  counter-reset: rank;
}
.rank-list li { list-style: none; counter-increment: rank; }
.rank-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: background .2s;
  min-width: 0;
  overflow: hidden;
}
.rank-list a:hover { background: #1f1f28; text-decoration: none; }
.rank-num {
  display: none;
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  border-radius: 6px;
  background: #1c1c24;
}
.rank-num.top1 { background: #e91e63; color: #fff; }
.rank-num.top2 { background: #ff6d3f; color: #fff; }
.rank-num.top3 { background: #ff9800; color: #fff; }
.rank-title {
  flex: 1;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-likes {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--muted);
}

/* ── 友情链接 ── */
.links-card { margin-bottom: 24px; }
.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.links-row a {
  padding: 6px 16px;
  background: #1c1c24;
  border: 1px solid #2a2a33;
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  transition: all .2s;
}
.links-row a:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   响应式
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .home-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .recommend-swiper .swiper-slide {
    width: 148px;
  }
  .recommend-section {
    padding: 14px 0 12px;
  }
  .section-header {
    padding: 0 14px 10px;
  }
  .recommend-swiper {
    padding: 0 14px;
  }
  .home-card {
    padding: 14px 14px;
  }
  .card-body { padding: 8px 8px 10px; }
  .card-title { font-size: 12px; }
}

@media (max-width: 480px) {
  .recommend-swiper .swiper-slide {
    width: 130px;
  }
  .card-body { padding: 6px 8px 8px; }
  .card-title { font-size: 11px; }
  .rank-likes { display: none; }
}

/* 分页 */
.pagination { display: flex; gap: 8px; margin: 14px 0; flex-wrap: wrap; justify-content: center; text-align: center; }
.pagination a { padding: 6px 10px; border: 1px solid #2a2a33; border-radius: 6px; color: var(--text);
  transition: all 0.2s ease;
}
.pagination a.active, .pagination a:hover { background: #2a2a33; transform: translateY(-1px); }

/* 响应式 - 分页 */
@media (max-width: 480px) {
  .pagination {
    gap: 6px;
    margin: 12px 0;
  }
  .pagination a {
    padding: 5px 8px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   文章详情页
   ═══════════════════════════════════════════════════════════════ */
.breadcrumb { margin: 6px 0 16px; font-size: 13px; color: var(--muted); overflow-wrap: break-word; word-break: break-word; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--text); }

/* ── 文章头部 Hero ── */
.article-hero {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #2a2a33;
}
.article-hero-inner {
  padding: 32px 28px 24px;
  backdrop-filter: blur(2px);
}
.article-hero .article-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 18px;
  word-break: break-word;
}
.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.meta-icon { font-size: 15px; }

/* ── 操作按钮栏 ── */
.article-actions-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.btn-action {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.btn-action:active { transform: translateY(0); }
.btn-action .btn-icon { font-size: 20px; }
.btn-play {
  background: linear-gradient(135deg, #e91e63, #c2185b);
  color: #fff;
}
.btn-dl {
  background: linear-gradient(135deg, #ff5722, #ff6d3f 30%, #e91e63 70%, #c2185b);
  background-size: 200% 200%;
  color: #fff;
  border: 2px solid rgba(255,255,255,.15);
  padding: 24px 48px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 6px 30px rgba(233,30,99,.5),
    0 0 0 8px rgba(233,30,99,.12);
  animation: btnBgShift 3s ease-in-out infinite alternate, btnPulse 2s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0,0,0,.25);
}
.btn-dl::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: skewX(-25deg);
  animation: btnShine 3s ease-in-out infinite;
}
.btn-dl:hover {
  filter: brightness(1.1);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 40px rgba(233,30,99,.6),
    0 0 0 12px rgba(233,30,99,.18);
}
.btn-dl:active {
  transform: translateY(0) scale(.98);
}
.btn-dl .btn-icon {
  font-size: 28px;
  display: inline-block;
  animation: btnIconBounce .8s ease-in-out infinite alternate;
}
@keyframes btnBgShift {
  from { background-position: 0% 0%; }
  to   { background-position: 100% 100%; }
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(233,30,99,.5), 0 0 0 8px rgba(233,30,99,.12); }
  50%      { box-shadow: 0 6px 36px rgba(255,109,63,.65), 0 0 0 16px rgba(233,30,99,.04); }
}
@keyframes btnShine {
  0%, 100% { left: -100%; }
  40%, 60% { left: 120%; }
}
@keyframes btnIconBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}

/* ── 音频播放器卡片 ── */
.audio-wrap { margin-bottom: 24px; display: none; }
.audio-card {
  display: flex;
  background: var(--panel);
  border: 1px solid #2a2a33;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.audio-visual {
  width: 90px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audio-note { font-size: 40px; opacity: .7; }
.audio-body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}
.audio-title {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.audio-body audio {
  width: 100%;
  height: 40px;
  border-radius: 8px;
}

/* ── 文章双栏 ── */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  margin-bottom: 24px;
  min-width: 0;
  overflow: hidden;
}
.article-main { min-width: 0; overflow: hidden; }
.article-sidebar { min-width: 0; overflow: hidden; }

/* ── 响应式 ── */
@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .article-hero .article-title {
    font-size: 20px;
  }
  .article-hero-inner {
    padding: 22px 18px 18px;
  }
  .article-meta-row {
    gap: 10px;
  }
  .meta-item {
    font-size: 12px;
  }
  .article-actions-bar {
    flex-direction: column;
  }
  .btn-action {
    padding: 14px 20px;
    font-size: 15px;
  }
  .btn-dl {
    padding: 18px 32px;
    font-size: 18px;
    letter-spacing: 1.5px;
    border-radius: 44px;
    box-shadow: 0 4px 24px rgba(233,30,99,.45), 0 0 0 6px rgba(233,30,99,.1);
  }
  .btn-dl .btn-icon { font-size: 22px; }
  .audio-visual {
    width: 64px;
    min-height: 64px;
  }
  .audio-note { font-size: 30px; }
  .audio-title { font-size: 14px; }
}

@media (max-width: 480px) {
  .article-hero .article-title {
    font-size: 18px;
  }
  .article-hero-inner {
    padding: 16px 14px 14px;
  }
}

/* 右侧榜单 */
.rank .list li { align-items: center; }

/* 响应式 - 榜单 */
@media (max-width: 768px) {
  .rank .list li .score {
    font-size: 14px;
  }
}
.rank .list .score { width: 64px; text-align: right; }

/* 底部 */
.footer { margin-top: 20px; padding: 20px 0; background: #14141a; border-top: 1px solid #2a2a33; }
.footer .links { display: flex; gap: 14px; flex-wrap: wrap; }
.footer .copy { margin-top: 10px; color: var(--muted); font-size: 12px; }

/* 响应式 - 底部 */
@media (max-width: 480px) {
  .footer {
    padding: 16px 0;
  }
  .footer .links {
    gap: 12px;
    font-size: 14px;
  }
}

/* 下载弹窗 */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1000; }
.modal .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.modal .panel { position: relative; z-index: 2; width: 520px; max-width: 92vw; background: var(--panel); border: 1px solid #2a2a33; border-radius: 10px; padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.modal .panel h3 { margin: 0 0 6px; font-size: 18px; text-align: center; }
.modal .panel .modal-tip { margin: 0 0 12px; font-size: 13px; color: var(--muted); text-align: center; }
.modal .panel .modal-song { margin: 8px 0 0; font-size: 13px; text-align: center; color: var(--muted); }
.modal .panel .qrcode { display: block; margin: 10px auto; border: 1px solid #2a2a33; border-radius: 8px; }
.modal .panel .dl { margin-top: 10px; font-size: 14px; word-break: break-all; }
.modal .close { position: absolute; top: 10px; right: 10px; background: #2a2a33; border: none; border-radius: 6px; color: #fff; padding: 6px 8px; cursor: pointer;
  transition: background-color 0.2s ease;
}
.modal .close:hover {
  background: #3a3f49;
}

/* 响应式 - 弹窗 */
@media (max-width: 480px) {
  .modal .panel {
    padding: 14px;
    margin: 10px;
  }
  .modal .panel h3 {
    font-size: 16px;
    margin: 0 0 12px;
  }
  .modal .panel .qrcode {
    width: 180px;
    height: 180px;
  }
  .modal .panel .dl {
    font-size: 13px;
  }
}

/* ── 标签页 ── */
.tags-page {
  max-width: 900px;
  margin: 0 auto;
}
.tags-header {
  text-align: center;
  margin-bottom: 28px;
}
.tags-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #ff6d3f, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tags-subtitle {
  color: #888;
  font-size: 14px;
  margin: 0 0 18px;
}
.tags-subtitle strong {
  color: #ff6d3f;
}
.tags-search {
  margin-bottom: 20px;
}
.tags-search-input {
  width: 100%;
  max-width: 360px;
  padding: 10px 16px;
  border: 1px solid #2a2a33;
  border-radius: 24px;
  background: #0f0f13;
  color: #f0f0f3;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.tags-search-input:focus {
  border-color: #ff6d3f;
  box-shadow: 0 0 0 3px rgba(255,109,63,.15);
}

/* 标签云 */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 0;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  background: #1a1a24;
  border: 1px solid #2a2a33;
  color: #d0d0d8;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap;
}
.tag-pill:hover {
  transform: translateY(-2px);
  border-color: #ff6d3f;
  background: #24242e;
  box-shadow: 0 4px 14px rgba(255,109,63,.18);
  color: #fff;
}
.tag-count {
  font-size: 11px;
  color: #777;
  background: rgba(255,255,255,.05);
  padding: 1px 7px;
  border-radius: 10px;
  transition: background .2s;
}
.tag-pill:hover .tag-count {
  background: rgba(255,109,63,.18);
  color: #ff6d3f;
}

/* 权重尺寸 */
.tag-w1 { font-size: 13px; padding: 5px 11px; }
.tag-w2 { font-size: 15px; padding: 7px 14px; }
.tag-w3 { font-size: 17px; padding: 9px 17px; font-weight: 600; }
.tag-w4 {
  font-size: 20px; padding: 11px 22px; font-weight: 700;
  background: linear-gradient(135deg, rgba(255,109,63,.12), rgba(233,30,99,.08));
  border-color: rgba(233,30,99,.25);
}

/* 加载更多 */
.btn-load-more {
  display: block;
  margin: 28px auto;
  padding: 13px 44px;
  background: linear-gradient(135deg, #ff6d3f, #e91e63);
  color: #fff;
  border: none;
  border-radius: 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(233,30,99,.4);
}
.btn-load-more:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* 三点加载动画 */
.tags-loader {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 18px 0;
}
.loader-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff6d3f;
  animation: tagBounce 1.4s ease-in-out infinite both;
}
.loader-dot:nth-child(1) { animation-delay: -.32s; }
.loader-dot:nth-child(2) { animation-delay: -.16s; }
@keyframes tagBounce {
  0%, 80%, 100% { transform: scale(.35); opacity: .25; }
  40% { transform: scale(1); opacity: 1; }
}

/* 标签页响应式 */
@media (max-width: 600px) {
  .tags-cloud { gap: 8px; }
  .tags-title { font-size: 22px; }
  .tag-w4 { font-size: 17px; padding: 9px 17px; }
  .tag-w3 { font-size: 15px; padding: 7px 14px; }
}

/* 移动端触摸优化 */
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .tag-pill:active,
  .pagination a:active {
    transform: scale(0.98);
  }
}

/* 音频播放器响应式 */
.audio-wrap {
  width: 100%;
}
.audio-wrap audio {
  width: 100%;
  max-width: 100%;
  background: #1c1c22;
  border-radius: 8px;
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 防止内容被意外选中 */
.section-title, .site-title {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}