.page-home {
  --collage-gap: 14px;
  --track: 1px;
  display: block;
  overflow-x: clip;
}

/* ---------- 首屏拼贴 ---------- */
.page-home .home-context {
  padding-bottom: 0;
}

.page-home .home-collage {
  position: relative;
  padding-top: 18px;
}

.page-home .home-collage::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: repeating-linear-gradient(
    102deg,
    rgba(245, 179, 1, 0.055) 0 1px,
    transparent 1px 92px
  );
  pointer-events: none;
  z-index: 0;
}

.page-home .home-collage .container {
  position: relative;
  z-index: 1;
}

.page-home .collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--collage-gap);
  align-items: stretch;
}

.page-home .collage-card {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  box-shadow: var(--shadow-panel);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.page-home .collage-card:hover {
  border-color: rgba(245, 179, 1, 0.42);
  transform: translateY(-3px);
}

.page-home .collage-card--headline {
  padding: 26px 22px 28px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 60, 172, 0.11), transparent 58%),
    radial-gradient(120% 130% at 0% 100%, rgba(45, 226, 230, 0.09), transparent 55%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
}

.page-home .collage-card--headline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(92deg, var(--sun) 0%, var(--magenta) 52%, var(--cyan) 100%);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.page-home .display-title {
  margin: 14px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(27px, 5.6vw, 44px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 22ch;
}

.page-home .lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mist);
  max-width: 46ch;
}

.page-home .collage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-home .collage-card--visual {
  padding: 0;
  overflow: hidden;
  min-height: 200px;
}

.page-home .collage-card--visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  max-width: 100%;
}

.page-home .collage-metric {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(36px, 9vw, 62px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--sun);
  font-variant-numeric: tabular-nums;
}

.page-home .collage-metric em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--sun-hi);
  margin-left: 2px;
}

.page-home .collage-metric--sm {
  font-size: clamp(28px, 6.5vw, 40px);
  color: var(--sun-hi);
}

.page-home .collage-metric__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}

.page-home .collage-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mist-2);
  text-transform: uppercase;
}

.page-home .collage-card--meter .progress {
  margin: 16px 0 12px;
}

.page-home .collage-fill-a {
  width: 86%;
}

.page-home .collage-card--version {
  border-color: rgba(45, 226, 230, 0.28);
}

.page-home .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

@media (min-width: 720px) {
  .page-home .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .collage-card--headline,
  .page-home .collage-card--visual {
    grid-column: 1 / -1;
  }
  .page-home .collage-card--visual {
    min-height: 280px;
  }
  .page-home .collage-card--visual img {
    min-height: 280px;
  }
}

@media (min-width: 1024px) {
  .page-home .collage-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
  }
  .page-home .collage-card--headline {
    grid-column: 1 / span 7;
    padding: 30px 28px 32px;
  }
  .page-home .collage-card--visual {
    grid-column: 8 / span 5;
    grid-row: 1 / span 1;
    min-height: 0;
  }
  .page-home .collage-card--visual img {
    min-height: 100%;
    height: 100%;
  }
  .page-home .collage-card--meter {
    grid-column: 1 / span 4;
  }
  .page-home .collage-card--eval {
    grid-column: 5 / span 4;
  }
  .page-home .collage-card--version {
    grid-column: 9 / span 4;
  }
}

/* ---------- 游戏库入口 ---------- */
.page-home .section-head {
  max-width: 62ch;
}

.page-home .section-head .section-title {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.28;
  color: var(--white);
}

.page-home .explore-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 26px;
}

.page-home .filter-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
}

.page-home .filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  color: var(--mist);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-home .filter-chip--on {
  border-color: rgba(245, 179, 1, 0.65);
  background: rgba(245, 179, 1, 0.13);
  color: var(--sun-hi);
}

.page-home .explore-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .explore-card {
  padding: 20px 18px 22px;
}

.page-home .explore-card h3 {
  margin: 12px 0 10px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
}

.page-home .explore-card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--mist);
}

.page-home .text-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 226, 230, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .text-link:hover {
  color: var(--sun-hi);
  border-color: var(--sun-hi);
}

@media (min-width: 720px) {
  .page-home .explore-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .explore-layout {
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
  }
  .page-home .filter-strip {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page-home .filter-chip {
    justify-content: center;
    width: 100%;
    padding: 11px 16px;
  }
}

/* ---------- 十项评测指标 ---------- */
.page-home .metrics-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .metrics-copy .section-title {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.28;
  color: var(--white);
}

.page-home .metrics-copy .btn {
  margin-top: 18px;
}

.page-home .metrics-figure {
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel-2);
}

.page-home .metrics-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .metrics-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .metrics-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 16px;
  background: var(--panel-2);
  transition: background 0.2s ease;
}

.page-home .metrics-list li:hover {
  background: var(--panel);
}

.page-home .metric-index {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sun);
  flex: none;
}

.page-home .metric-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

@media (min-width: 560px) {
  .page-home .metrics-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .metrics-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 44px;
    align-items: start;
  }
  .page-home .metrics-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6px;
  }
}

/* ---------- 下载与排行 ---------- */
.page-home .download-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 26px;
}

.page-home .download-ranks .note {
  margin: 14px 0 18px;
}

.page-home .rank {
  color: var(--mist);
  font-weight: 700;
}

.page-home .rank--top {
  color: var(--sun-hi);
}

.page-home .download-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel-2);
  box-shadow: var(--shadow-panel);
}

.page-home .download-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .download-visual figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  margin: 0;
}

@media (min-width: 1024px) {
  .page-home .download-layout {
    grid-template-columns: 1.4fr 0.9fr;
    gap: 32px;
    align-items: start;
  }
}

/* ---------- 版本节点时间线 ---------- */
.page-home .home-timeline {
  position: relative;
}

.page-home .timeline-visual {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--panel-2);
}

.page-home .timeline-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.page-home .timeline {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-home .timeline-node {
  position: relative;
  padding: 18px 12px 18px 24px;
  border-left: 1px solid var(--line);
}

.page-home .timeline-node::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.15);
}

.page-home .timeline-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.page-home .timeline-tag {
  display: inline-block;
  margin: 10px 0 10px;
}

.page-home .timeline-node p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mist);
}

@media (min-width: 720px) {
  .page-home .timeline {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .page-home .timeline {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 0;
    margin-top: 34px;
  }
  .page-home .timeline-node {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 24px 16px 8px 0;
  }
  .page-home .timeline-node::before {
    left: 0;
    top: -5px;
  }
}

/* ---------- 服务通道 ---------- */
.page-home .service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .service-copy .section-title {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(21px, 3.2vw, 29px);
  line-height: 1.3;
  color: var(--white);
}

.page-home .service-copy p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.78;
  color: var(--mist);
  max-width: 52ch;
}

.page-home .service-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.page-home .service-links a {
  display: block;
  padding: 15px 16px;
  background: var(--panel-2);
  border-left: 2px solid transparent;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    padding-left 0.2s ease;
}

.page-home .service-links a:hover {
  background: var(--panel);
  color: var(--sun-hi);
  border-left-color: var(--sun);
  padding-left: 21px;
}

@media (min-width: 900px) {
  .page-home .service-layout {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
  }
}
<<<END>>>
