/* ==========================================================
   Page: home
   作用域：.page-home
   霓虹夜店 × 数字档案：紫红首屏 / 橙黄榜单 / 青绿专题 / 深色时间轴
   ========================================================== */

.page-home {
  background: var(--bg-base);
  color: var(--ink);
}

/* ---------- 面包屑 ---------- */
.page-home .breadcrumbs--light {
  padding: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}
.page-home .breadcrumbs--light a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.page-home .breadcrumbs--light a:hover {
  color: #fff;
}
.page-home .breadcrumbs--light .breadcrumbs-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- 首屏 Hero：紫红拼贴 ---------- */
.page-home .home-hero {
  background: linear-gradient(140deg, #d5006d 0%, #7a0040 55%, #34001b 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 58px;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.055) 0 16px, transparent 16px 32px);
  pointer-events: none;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, #ff6ec7, #ff7a00, #00c9a7, #00e5ff);
}

/* 顶部状态行 */
.page-home .hero-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin: 12px 0 22px;
}
.page-home .hero-batch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.03em;
}
.page-home .hero-update-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.page-home .hero-total {
  color: var(--accent-blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

/* 首屏双栏 */
.page-home .hero-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-home .hero-main {
  min-width: 0;
}
.page-home .hero-side {
  min-width: 0;
}

/* 主标题与导语 */
.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.08;
  font-weight: 900;
  color: #fff;
  transform: skew(-4deg);
  transform-origin: left center;
  letter-spacing: 0.01em;
  margin: 0 0 14px;
  text-shadow: 0 0 28px rgba(255, 110, 199, 0.55), 0 0 60px rgba(213, 0, 109, 0.35), 0 2px 0 rgba(0, 0, 0, 0.3);
}
.page-home .hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 0 16px;
}
.page-home .hero-filter-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.page-home .filter-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 4px;
}
.page-home .hero-filter-tags .tag {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 5px;
}

/* 最新入库卡片区 */
.page-home .latest-zone {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(8px);
}
.page-home .zone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.page-home .zone-bar-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  transform: skew(-3deg);
}
.page-home .zone-bar-link {
  color: var(--accent-blue);
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.page-home .zone-bar-link:hover {
  background: rgba(0, 229, 255, 0.3);
}

/* 横向滑动卡片墙 */
.page-home .latest-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.page-home .latest-card {
  flex: 0 0 162px;
  scroll-snap-align: start;
  display: block;
  background: var(--card-bg);
  border: 2px solid var(--line-a);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.page-home .latest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.page-home .latest-card-cover {
  position: relative;
}
.page-home .latest-card-cover img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: cover;
}
.page-home .latest-card-cover .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.page-home .res-tag {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
}
.page-home .latest-card-body {
  padding: 9px 11px;
}
.page-home .latest-card-title {
  display: block;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
}
.page-home .latest-card-meta {
  display: block;
  color: var(--ink-muted);
  font-size: 12px;
  margin-top: 3px;
}

/* 状态徽标强化 */
.page-home .badge--new {
  background: var(--status-new);
  color: #0a0a0f;
}
.page-home .badge--hot {
  background: var(--status-hot);
  color: #fff;
}
.page-home .badge--rec {
  background: var(--status-rec);
  color: #fff;
}

/* ---------- 侧栏：分类磁贴矩阵 ---------- */
.page-home .side-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.page-home .side-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  transform: skew(-4deg);
}
.page-home .side-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .side-tiles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-home .tile-group {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
}
.page-home .tile-group-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}
.page-home .tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.page-home .tile-grid--type {
  grid-template-columns: repeat(3, 1fr);
}

/* 磁贴本体 */
.page-home .tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 54px;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.page-home .tile--a {
  background: linear-gradient(135deg, #d5006d, #ff6ec7);
  color: #fff;
}
.page-home .tile--b {
  background: linear-gradient(135deg, #ff7a00, #ffc53d);
  color: #1a1a1a;
}
.page-home .tile--c {
  background: linear-gradient(135deg, #00c9a7, #00e5ff);
  color: #1a1a1a;
}
.page-home .tile-label {
  font-weight: 800;
  font-size: 13px;
  transform: skew(-4deg);
  display: inline-block;
  line-height: 1.2;
}
.page-home .tile-count {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.85;
  font-weight: 700;
}

/* ---------- 热门榜单 TOP10：橙黄分区 ---------- */
.page-home .home-rank {
  background: linear-gradient(135deg, #ff7a00 0%, #ff9f1c 45%, #ffd166 100%);
  padding: 46px 0 54px;
  position: relative;
  overflow: hidden;
}
.page-home .home-rank::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 24px);
  pointer-events: none;
  border-radius: 50%;
}

.page-home .rank-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.page-home .rank-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.page-home .rank-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
  color: #1a1a1a;
  transform: skew(-4deg);
  margin: 0;
}
.page-home .rank-title-wrap .section-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(26, 26, 26, 0.6);
}
.page-home .rank-link {
  background: rgba(26, 26, 26, 0.85);
  color: #fff;
  padding: 7px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: skew(-3deg);
  transition: var(--transition);
}
.page-home .rank-link:hover {
  background: #000;
}

.page-home .rank-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.page-home .rank-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 179, 0, 0.7);
  border-left: 5px solid var(--status-hot);
  border-radius: 9px;
  padding: 8px 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .rank-row:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.page-home .rank-row .seq-num {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-zone-b);
  text-align: center;
}
.page-home .rank-title-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .rank-row .tag {
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.page-home .rank-row .badge {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.page-home .rank-progress {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-align: right;
  white-space: nowrap;
}

/* 标签色 */
.page-home .tag--a {
  background: rgba(213, 0, 109, 0.1);
  border: 1px solid rgba(213, 0, 109, 0.45);
  color: #a00054;
}
.page-home .tag--pink {
  background: rgba(255, 110, 199, 0.14);
  border: 1px solid rgba(255, 110, 199, 0.5);
  color: #c1138a;
}
.page-home .tag--blue {
  background: rgba(0, 229, 255, 0.14);
  border: 1px solid rgba(0, 229, 255, 0.5);
  color: #007a93;
}
.page-home .tag--c {
  background: rgba(0, 201, 167, 0.12);
  border: 1px solid rgba(0, 201, 167, 0.45);
  color: #008573;
}
.page-home .tag--b {
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: #b35400;
}

/* ---------- 专题合集：青绿分区 ---------- */
.page-home .home-collections {
  background: linear-gradient(180deg, #0a0a0f 0%, #003c32 45%, #00c9a7 135%);
  padding: 48px 0 58px;
  position: relative;
}
.page-home .collections-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}
.page-home .collections-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.page-home .collections-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
  color: #fff;
  transform: skew(-4deg);
  margin: 0;
}
.page-home .collections-title-wrap .section-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}
.page-home .section-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .keyword-chip {
  background: rgba(255, 110, 199, 0.18);
  border: 1px solid rgba(255, 110, 199, 0.55);
  color: #ff9cd8;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 16px;
  letter-spacing: 0.03em;
}

/* 轨道 */
.page-home .collection-rail {
  margin-bottom: 30px;
}
.page-home .rail-head {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 96px;
  box-shadow: var(--shadow);
}
.page-home .rail-head-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .rail-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.4) 55%, rgba(10, 10, 15, 0.15) 100%);
}
.page-home .rail-head-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
}
.page-home .rail-title {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 900;
  color: #fff;
  transform: skew(-4deg);
  margin: 0;
  letter-spacing: 0.02em;
}
.page-home .rail-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 3px 10px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
}
.page-home .rail-more {
  margin-left: auto;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
  transition: var(--transition);
}
.page-home .rail-more:hover {
  border-color: #fff;
}

/* 横向轨道卡片 */
.page-home .rail-cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 2px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.page-home .collection-card {
  flex: 0 0 168px;
  scroll-snap-align: start;
  background: #fff;
  border: 2px solid var(--line-c);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.page-home .collection-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.page-home .collection-art {
  height: 86px;
  background: #ddd;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
  position: relative;
}
.page-home .collection-art-tag {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-home .collection-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 10px 12px;
}
.page-home .collection-name {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.page-home .collection-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  white-space: nowrap;
  font-weight: 700;
}

/* 合集卡片渐变纹理 */
.page-home .collection-art--a {
  background: linear-gradient(130deg, #d5006d, #ff6ec7 55%, #00e5ff);
}
.page-home .collection-art--b {
  background: linear-gradient(130deg, #ff7a00, #ffd166 45%, #ff6ec7);
}
.page-home .collection-art--c {
  background: linear-gradient(130deg, #00c9a7, #00e5ff 60%, #9d00ff);
}
.page-home .collection-art--d {
  background: linear-gradient(130deg, #9d00ff, #ff6ec7 50%, #ff7a00);
}
.page-home .collection-art--e {
  background: repeating-linear-gradient(-45deg, #d5006d 0 12px, #ff6ec7 12px 24px);
}
.page-home .collection-art--f {
  background: repeating-linear-gradient(45deg, #00c9a7 0 12px, #00e5ff 12px 24px);
}
.page-home .collection-art--g {
  background: radial-gradient(circle at 20% 30%, #ff6ec7, transparent 60%),
    linear-gradient(135deg, #1a1a2e, #0a0a0f);
}
.page-home .collection-art--h {
  background: radial-gradient(circle at 80% 20%, #00e5ff, transparent 55%),
    linear-gradient(135deg, #d5006d, #0a0a0f);
}

/* ---------- 批次更新时间轴：深色分区 ---------- */
.page-home .home-timeline {
  background: linear-gradient(180deg, #10001f 0%, #0a0a0f 100%);
  padding: 48px 0 58px;
  color: #fff;
  position: relative;
}
.page-home .home-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6ec7, #00e5ff, #39ff14);
}

.page-home .timeline-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}
.page-home .timeline-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.page-home .timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 900;
  color: #fff;
  transform: skew(-4deg);
  margin: 0;
}
.page-home .timeline-title-wrap .section-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}
.page-home .timeline-total {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--status-new);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 5px 13px;
  border-radius: 16px;
}

.page-home .timeline-wrap {
  max-width: 860px;
}
.page-home .timeline-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 26px;
}
.page-home .timeline-inner::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #ff6ec7, #00e5ff, #39ff14);
  border-radius: 2px;
}
.page-home .timeline-node {
  position: relative;
}
.page-home .timeline-dot {
  position: absolute;
  left: -26px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--accent-pink);
  border: 3px solid #0a0a0f;
  border-radius: 50%;
  box-shadow: 0 0 14px var(--accent-pink);
}
.page-home .timeline-node:nth-child(2) .timeline-dot {
  background: var(--accent-blue);
  box-shadow: 0 0 14px var(--accent-blue);
}
.page-home .timeline-node:nth-child(3) .timeline-dot {
  background: var(--status-new);
  box-shadow: 0 0 14px var(--status-new);
}
.page-home .timeline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 110, 199, 0.25);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.page-home .timeline-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 110, 199, 0.5);
}
.page-home .timeline-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .timeline-batch {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  color: var(--accent-pink);
  transform: skew(-4deg);
  letter-spacing: 0.02em;
}
.page-home .timeline-node:nth-child(2) .timeline-batch {
  color: var(--accent-blue);
}
.page-home .timeline-node:nth-child(3) .timeline-batch {
  color: var(--status-new);
}
.page-home .timeline-batch-count {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--status-new);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.4);
  padding: 2px 10px;
  border-radius: 12px;
}
.page-home .timeline-card-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}
.page-home .timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.page-home .timeline-tags .tag {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--accent-blue);
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 3px 10px;
  border-radius: 5px;
}

/* 快捷访问辅助 */
.page-home .quick-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.page-home .quick-help-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  margin-right: 6px;
}
.page-home .quick-help .btn {
  border-radius: 7px;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 18px;
  transform: skew(-3deg);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.page-home .btn--pink {
  background: var(--accent-pink);
  color: #1a1a1a;
  border: 1px solid transparent;
}
.page-home .btn--pink:hover {
  background: #ff8fd6;
}
.page-home .btn--blue {
  background: var(--accent-blue);
  color: #1a1a1a;
  border: 1px solid transparent;
}
.page-home .btn--blue:hover {
  background: #59eeff;
}
.page-home .btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.page-home .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- 响应式 ---------- */

/* 平板：加宽最新卡片和合集卡片 */
@media (min-width: 640px) {
  .page-home .latest-card {
    flex-basis: 185px;
  }
  .page-home .collection-card {
    flex-basis: 200px;
  }
  .page-home .collection-art {
    height: 96px;
  }
  .page-home .rail-head {
    height: 108px;
  }
}

/* 桌面：首屏双栏拼贴 */
@media (min-width: 900px) {
  .page-home .home-hero {
    padding-bottom: 64px;
  }
  .page-home .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 36px;
    align-items: start;
  }
  .page-home .hero-main {
    padding-top: 4px;
  }
  .page-home .tile-grid--region,
  .page-home .tile-grid--year {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .latest-card {
    flex-basis: 192px;
  }
  .page-home .latest-card-cover img {
    height: 112px;
  }
  .page-home .rail-head {
    height: 120px;
  }
  .page-home .collection-rail {
    margin-bottom: 34px;
  }
  .page-home .collection-card {
    flex-basis: 216px;
  }
}

/* 大屏：榜单行间距更宽 */
@media (min-width: 1200px) {
  .page-home .rank-row {
    padding: 10px 18px;
  }
  .page-home .rank-row .seq-num {
    font-size: 19px;
  }
  .page-home .rank-title-text {
    font-size: 16px;
  }
  .page-home .timeline-inner {
    padding-left: 32px;
  }
  .page-home .timeline-dot {
    left: -32px;
    width: 16px;
    height: 16px;
  }
}
