/* ===================================================
   首页 · 深夜看台记分屏
   全部选择器限定在 .page-home 作用域内
   =================================================== */

.page-home {
  --ph-rail: 320px;
  --ph-skew: 6deg;
  --ph-sticky: calc(var(--nav-h) + 20px);
  background: var(--void);
  color: var(--chalk);
}

.page-home [id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.page-home .mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ---------- 通用区块节奏 ---------- */
.page-home .section {
  position: relative;
  padding: clamp(52px, 8vw, 104px) 0;
  border-top: 2px solid var(--steel);
}

.page-home .section__head {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.page-home .section__title {
  margin: 0 0 0.5em;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--chalk);
  padding-bottom: 12px;
  background-image: linear-gradient(var(--neon), var(--neon));
  background-repeat: no-repeat;
  background-size: 56px 4px;
  background-position: 0 100%;
}

.page-home .section__lede {
  margin: 0;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--haze);
}

/* ===================================================
   首屏海报层
   =================================================== */
.page-home .poster {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% 12%, rgba(31, 107, 74, 0.22) 0%, transparent 62%),
    repeating-linear-gradient(115deg, rgba(31, 107, 74, 0.14) 0 2px, transparent 2px 36px),
    var(--void);
}

.page-home .poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(35, 240, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 240, 212, 0.05) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
}

.page-home .poster .breadcrumb {
  position: relative;
  z-index: 2;
  padding-top: clamp(18px, 3vw, 28px);
}

.page-home .poster__body {
  position: relative;
  z-index: 2;
}

.page-home .poster__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(26px, 5vw, 52px) 0 clamp(32px, 5vw, 64px);
}

.page-home .poster__copy {
  min-width: 0;
}

.page-home .poster__title {
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(40px, 8.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--chalk);
}

.page-home .poster__mark {
  position: relative;
  display: inline-block;
  color: var(--neon);
}

.page-home .poster__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 8%;
  bottom: -0.06em;
  height: 6px;
  background: var(--coral);
  transform: skewX(-16deg);
}

.page-home .poster__lede {
  margin: clamp(18px, 3vw, 28px) 0 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.75;
  color: var(--haze);
}

.page-home .poster__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 32px);
}

.page-home .poster__media {
  position: relative;
  margin: 0;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid var(--steel);
  box-shadow: 10px 10px 0 0 rgba(30, 46, 74, 0.75);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.page-home .poster__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.86);
}

.page-home .poster__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(5, 11, 24, 0.88) 0%, rgba(5, 11, 24, 0.16) 52%, rgba(5, 11, 24, 0.78) 100%),
    repeating-linear-gradient(0deg, rgba(35, 240, 212, 0.07) 0 1px, transparent 1px 26px);
}

/* ---------- 全站目录 ---------- */
.page-home .catalog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--steel);
}

.page-home .catalog__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 22px;
  border-bottom: 2px solid var(--steel);
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
}

.page-home .catalog__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--steel);
  transition: background 150ms var(--ease), width 150ms var(--ease);
}

.page-home .catalog__no {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--neon);
}

.page-home .catalog__name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--chalk);
}

.page-home .catalog__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--haze);
}

.page-home .catalog__item:hover,
.page-home .catalog__item:focus-visible {
  background: var(--stand);
}

.page-home .catalog__item:hover::before,
.page-home .catalog__item:focus-visible::before {
  background: var(--neon);
  width: 4px;
}

/* ===================================================
   01 赛程对照表
   =================================================== */
.page-home .fixtures {
  background: linear-gradient(180deg, var(--void) 0%, var(--stand) 100%);
}

.page-home .fixtures__band {
  position: relative;
  height: clamp(130px, 20vw, 240px);
  overflow: hidden;
  border-top: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
}

.page-home .fixtures__band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.5) contrast(1.1);
}

.page-home .fixtures__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(35, 240, 212, 0.08) 0 1px, transparent 1px 56px);
}

.page-home .strip {
  display: flex;
  gap: 0;
  margin-top: -28px;
  padding-bottom: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  border-bottom: 2px solid var(--steel);
  background: rgba(11, 24, 48, 0.6);
}

.page-home .strip:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.page-home .strip::-webkit-scrollbar {
  height: 8px;
}

.page-home .strip::-webkit-scrollbar-track {
  background: var(--void);
}

.page-home .strip::-webkit-scrollbar-thumb {
  background: var(--steel);
}

.page-home .strip::-webkit-scrollbar-thumb:hover {
  background: var(--neon-dim);
}

.page-home .league {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  scroll-snap-align: start;
  padding: 22px 20px 26px;
  border-right: 2px solid var(--steel);
  border-top: 2px solid var(--steel);
}

.page-home .league:first-child {
  border-left: 2px solid var(--steel);
}

.page-home .league__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--steel);
}

.page-home .league__name {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--chalk);
}

.page-home .league__round {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.page-home .match-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .match {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--steel);
}

.page-home .match:last-child {
  border-bottom: 0;
}

.page-home .match__time {
  grid-column: 2;
  grid-row: 1;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--neon);
  white-space: nowrap;
}

.page-home .match__pair {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  color: var(--chalk);
}

.page-home .match__pair b {
  font-weight: 700;
}

.page-home .match__pair i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--haze);
}

.page-home .match__venue {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 12.5px;
  color: var(--haze);
}

/* ===================================================
   02 赛程锚点 + 战报流
   =================================================== */
.page-home .split {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--steel);
}

.page-home .split__rail {
  padding: clamp(28px, 4vw, 42px) clamp(18px, 2.4vw, 28px);
  background: var(--stand);
  border-bottom: 2px solid var(--steel);
}

.page-home .rail__title {
  margin: 8px 0 20px;
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--chalk);
}

.page-home .watch-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.page-home .watch {
  display: grid;
  gap: 4px;
  padding: 14px 14px 14px 16px;
  margin-bottom: 10px;
  border: 2px solid var(--steel);
  border-left-width: 3px;
  background: var(--void);
  transition: background 150ms var(--ease), border-color 150ms var(--ease);
}

.page-home .watch:hover {
  background: rgba(35, 240, 212, 0.05);
  border-left-color: var(--neon);
}

.page-home .watch.is-next {
  border-left-color: var(--coral);
}

.page-home .watch__time {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.page-home .watch__pair {
  font-size: 15px;
  font-weight: 700;
  color: var(--chalk);
}

.page-home .watch__pair i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--haze);
  margin: 0 4px;
}

.page-home .watch__meta {
  font-size: 12.5px;
  color: var(--haze);
}

.page-home .rail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.page-home .rail__more {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid var(--neon-dim);
  padding-bottom: 2px;
}

.page-home .rail__more:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.page-home .split__main {
  padding: clamp(28px, 4vw, 48px) clamp(18px, 2.4vw, 34px) clamp(32px, 4vw, 52px);
  min-width: 0;
}

.page-home .stream__head {
  max-width: 68ch;
  margin-bottom: 22px;
}

.page-home .stream__banner {
  position: relative;
  margin: 0 0 26px;
  overflow: hidden;
  border: 2px solid var(--steel);
  aspect-ratio: 5 / 2;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.page-home .stream__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.62) contrast(1.12);
}

.page-home .stream {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .report {
  position: relative;
  padding: 20px 18px 22px 20px;
  margin-bottom: 14px;
  border: 2px solid var(--steel);
  background: rgba(11, 24, 48, 0.55);
  transition: background 150ms var(--ease), transform 150ms var(--ease), border-color 150ms var(--ease);
}

.page-home .report::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--steel);
  transition: background 150ms var(--ease);
}

.page-home .report:hover,
.page-home .report:focus-within {
  background: var(--stand);
  transform: translateY(-2px);
  border-color: var(--neon-dim);
}

.page-home .report:hover::before,
.page-home .report:focus-within::before {
  background: var(--neon);
}

.page-home .report__score {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 10px;
}

.page-home .report__team {
  font-size: 15px;
  font-weight: 700;
  color: var(--chalk);
}

.page-home .report__num {
  color: var(--neon);
}

.page-home .report__colon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--coral);
}

.page-home .report__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 12.5px;
  color: var(--haze);
}

.page-home .report__sum {
  margin: 0;
  max-width: 68ch;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--haze);
}

.page-home .stream__more {
  margin-top: 8px;
}

/* ===================================================
   03 近 5 轮进失球分布
   =================================================== */
.page-home .form-dist {
  background:
    repeating-linear-gradient(0deg, rgba(31, 107, 74, 0.13) 0 26px, transparent 26px 52px),
    var(--void);
}

.page-home .form-dist__modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.page-home .dist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 2px solid var(--steel);
}

.page-home .dist__item {
  padding: 22px 0 24px;
  border-bottom: 2px solid var(--steel);
}

.page-home .dist__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.page-home .dist__team {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--chalk);
}

.page-home .dist__numbers {
  font-size: 22px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .dist__numbers b {
  font-weight: 700;
}

.page-home .dist__slash {
  color: var(--steel);
  padding: 0 2px;
}

.page-home .dist__chart {
  display: block;
  width: 100%;
  height: 62px;
}

.page-home .dist__chart rect {
  fill: var(--neon);
  transition: fill 150ms var(--ease);
}

.page-home .dist__chart rect.is-lost {
  fill: var(--coral);
  opacity: 0.82;
}

.page-home .dist__item:hover .dist__chart rect {
  fill: var(--neon-dim);
}

.page-home .dist__item:hover .dist__chart rect.is-lost {
  fill: var(--coral);
}

.page-home .dist__note {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--haze);
}

.page-home .dist__lede {
  margin: clamp(22px, 3vw, 32px) 0 0;
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.76;
  color: var(--haze);
  padding-left: 18px;
  border-left: 2px solid var(--neon);
}

/* ===================================================
   04 更新公告与移动端入口
   =================================================== */
.page-home .updates {
  background: var(--stand);
}

.page-home .updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 32px);
}

.page-home .updates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--steel);
}

.page-home .notice {
  padding: 18px 0 20px 18px;
  border-bottom: 1px solid var(--steel);
  border-left: 2px solid var(--steel);
  transition: border-left-color 150ms var(--ease);
}

.page-home .notice:hover {
  border-left-color: var(--neon);
}

.page-home .notice__ver {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 8px;
}

.page-home .notice__text {
  margin: 0;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--haze);
}

.page-home .mobile-card {
  position: relative;
  padding: 26px 22px 28px;
  border: 2px solid var(--neon);
  background: var(--void);
  box-shadow: 10px 10px 0 0 rgba(35, 240, 212, 0.14);
}

.page-home .mobile-card__title {
  margin: 8px 0 14px;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--chalk);
}

.page-home .mobile-card__text {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.74;
  color: var(--haze);
}

.page-home .mobile-card__steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-home .mobile-card__steps li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--chalk);
  background: var(--stand);
  border-left: 3px solid var(--neon);
}

.page-home .mobile-card__steps .mono {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--neon);
}

/* ===================================================
   05 资料库时间轴
   =================================================== */
.page-home .archive {
  background: var(--void);
}

.page-home .timeline {
  list-style: none;
  margin: 0 0 30px;
  padding: 0 0 10px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border-top: 2px solid var(--steel);
}

.page-home .timeline::-webkit-scrollbar {
  height: 8px;
}

.page-home .timeline::-webkit-scrollbar-track {
  background: var(--void);
}

.page-home .timeline::-webkit-scrollbar-thumb {
  background: var(--steel);
}

.page-home .timeline__item {
  position: relative;
  flex: 0 0 auto;
  width: min(230px, 72vw);
  padding: 24px 18px 26px;
  border-right: 2px solid var(--steel);
  border-bottom: 2px solid var(--steel);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 150ms var(--ease);
}

.page-home .timeline__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 4px;
  background: var(--steel);
  transition: width 150ms var(--ease), background 150ms var(--ease);
}

.page-home .timeline__item:hover {
  background: var(--stand);
}

.page-home .timeline__item:hover::after {
  width: 100%;
  background: var(--neon);
}

.page-home .timeline__year {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--chalk);
  line-height: 1;
}

.page-home .timeline__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--neon);
}

.page-home .timeline__desc {
  font-size: 13.5px;
  line-height: 1.66;
  color: var(--haze);
}

/* ===================================================
   06 内容产能与服务规模
   =================================================== */
.page-home .stats {
  background:
    radial-gradient(90% 60% at 8% 0%, rgba(35, 240, 212, 0.09) 0%, transparent 60%),
    var(--stand);
}

.page-home .stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.page-home .stats__text {
  margin: 0 0 18px;
  max-width: 66ch;
  font-size: 16px;
  line-height: 1.76;
  color: var(--haze);
}

.page-home .stats__media {
  position: relative;
  margin: 26px 0 0;
  overflow: hidden;
  border: 2px solid var(--steel);
  aspect-ratio: 3 / 2;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.page-home .stats__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.7) contrast(1.1);
}

.page-home .stats__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(35, 240, 212, 0.08) 0 1px, transparent 1px 28px);
}

.page-home .stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 2px solid var(--steel);
}

.page-home .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0 26px 18px;
  border-bottom: 1px solid var(--steel);
  border-left: 3px solid var(--steel);
  transition: border-left-color 150ms var(--ease), background 150ms var(--ease);
}

.page-home .stat:hover {
  border-left-color: var(--coral);
  background: rgba(255, 107, 74, 0.04);
}

.page-home .stat__num {
  color: var(--neon);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.page-home .stat__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--chalk);
}

.page-home .stat__note {
  font-size: 13.5px;
  line-height: 1.66;
  color: var(--haze);
  max-width: 42ch;
}

.page-home .stats__partners {
  margin: clamp(28px, 4vw, 42px) 0 0;
  max-width: 76ch;
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--haze);
  border: 2px solid var(--steel);
  border-left: 4px solid var(--coral);
  background: var(--void);
}

.page-home .stats__partners a {
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid var(--neon-dim);
}

.page-home .stats__partners a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

/* ===================================================
   07 数据反馈通道
   =================================================== */
.page-home .feedback {
  background: var(--void);
}

.page-home .feedback__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.4vw, 44px);
  padding: clamp(26px, 4vw, 44px);
  border: 2px solid var(--steel);
  background: var(--stand);
  box-shadow: 12px 12px 0 0 rgba(30, 46, 74, 0.6);
}

.page-home .feedback__text {
  margin: 0 0 16px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.76;
  color: var(--haze);
}

.page-home .feedback__hint {
  margin: 0;
  max-width: 60ch;
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--neon);
}

.page-home .feedback__list {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 2px solid var(--steel);
  min-width: 0;
}

.page-home .feedback__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--steel);
}

.page-home .feedback__key {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--coral);
}

.page-home .feedback__val {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: var(--chalk);
  overflow-wrap: anywhere;
}

.page-home .feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 32px);
}

/* ===================================================
   响应式
   =================================================== */
@media (min-width: 640px) {
  .page-home .catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .dist {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(20px, 3vw, 36px);
  }

  .page-home .dist__item {
    border-bottom: 2px solid var(--steel);
  }

  .page-home .feedback__row {
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .page-home .poster__inner {
    grid-template-columns: 1.12fr 0.88fr;
    gap: clamp(32px, 4.6vw, 64px);
    min-height: 440px;
  }

  .page-home .updates__grid {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .page-home .stats__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(20px, 3vw, 36px);
  }

  .page-home .feedback__panel {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

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

  .page-home .split {
    grid-template-columns: var(--ph-rail) minmax(0, 1fr);
  }

  .page-home .split__rail {
    border-bottom: 0;
    border-right: 2px solid var(--steel);
  }

  .page-home .rail-stick {
    position: sticky;
    top: var(--ph-sticky);
  }

  .page-home .stats__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

@media (min-width: 1180px) {
  .page-home .catalog {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .catalog__item {
    border-right: 2px solid var(--steel);
  }

  .page-home .catalog__item:last-child {
    border-right: 0;
  }

  .page-home .dist {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .dist__chart {
    height: 76px;
  }
}

/* 窄屏防溢出 */
@media (max-width: 639px) {
  .page-home .poster__title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .page-home .poster__media {
    box-shadow: 6px 6px 0 0 rgba(30, 46, 74, 0.75);
  }

  .page-home .feedback__panel {
    box-shadow: 6px 6px 0 0 rgba(30, 46, 74, 0.6);
  }

  .page-home .report__score {
    gap: 6px 10px;
  }
}
<<<END>>>
