/* ===== 首页专属样式 · page-home ===== */
.page-home {
  --hp-line: 1px;
  --hp-skew: 12deg;
  --hp-strip-bg: rgba(6, 10, 15, .78);
  background: var(--night);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

.page-home a {
  color: inherit;
}

.page-home .hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--carbon);
  padding-block: clamp(34px, 5.6vw, 72px) clamp(28px, 4.4vw, 56px);
}

.page-home .hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-home .hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: .28;
  filter: saturate(.55) contrast(1.15);
}

.page-home .hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 15, .93) 0%, rgba(11, 29, 51, .86) 46%, rgba(6, 10, 15, .97) 100%),
    repeating-linear-gradient(90deg, rgba(27, 44, 63, .42) 0 1px, transparent 1px 92px);
}

.page-home .hero__grid {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

@media (min-width: 960px) {
  .page-home .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: center;
  }
}

/* 面包屑 */
.page-home .crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.page-home .crumbs__item {
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--steel);
}

.page-home .crumbs__item[aria-current="page"] {
  color: var(--ink);
}

.page-home .crumbs__item + .crumbs__item::before {
  content: "·";
  margin-right: 6px;
  opacity: .55;
}

/* 章节跳转条 */
.page-home .chapter-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 22px;
}

.page-home .chapter-rail__link {
  font-size: 12px;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--steel);
  padding: 5px 10px;
  border: 1px solid var(--line);
  background: rgba(6, 10, 15, .62);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.page-home .chapter-rail__link:hover,
.page-home .chapter-rail__link:focus-visible {
  color: var(--lime);
  border-color: var(--lime);
  outline: none;
}

.page-home .chapter-rail__link.is-current {
  color: var(--carbon);
  background: var(--lime);
  border-color: var(--lime);
  font-weight: 700;
}

/* 首屏文字 */
.page-home .hero__lead .eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding-left: 10px;
  border-left: 3px solid var(--lime);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}

.page-home .hero__title {
  margin: 0 0 18px;
  max-width: 15em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(29px, 5.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ivory);
}

.page-home .hero__deck {
  margin: 0 0 26px;
  max-width: 60ch;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.85;
  color: #becbd6;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 今日赛程卡 */
.page-home .fixtures {
  position: relative;
  padding: clamp(18px, 2.4vw, 26px);
  background: linear-gradient(158deg, rgba(11, 29, 51, .96) 0%, rgba(6, 10, 15, .97) 100%);
  border: 1px solid var(--line);
}

.page-home .fixtures::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 104px;
  height: 4px;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%);
}

.page-home .fixtures__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.page-home .fixtures__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  color: var(--ivory);
}

.page-home .fixtures__stamp {
  font-size: 12px;
  color: var(--steel);
}

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

.page-home .fixture {
  position: relative;
  padding: 16px 0 16px 14px;
  border-bottom: 1px solid var(--line);
}

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

.page-home .fixture::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: var(--line);
  transition: background var(--t-fast), width var(--t-fast);
}

.page-home .fixture:hover::before,
.page-home .fixture:focus-within::before {
  background: var(--lime);
  width: 3px;
}

.page-home .fixture__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.page-home .fixture__round {
  font-size: 12px;
  color: var(--steel);
}

.page-home .fixture__line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.page-home .fixture__team {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: var(--ivory);
}

.page-home .fixture__team--away {
  text-align: right;
}

.page-home .fixture__time {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--lime);
}

.page-home .fixture__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  font-size: 12.5px;
  color: var(--steel);
}

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

/* 首屏数据带 */
.page-home .hero__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: clamp(26px, 4vw, 42px);
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--steel);
}

.page-home .hero__strip .data-strip__cell {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}

.page-home .hero__strip b {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
  color: var(--lime);
}

/* 通用栏目 */
.page-home .section {
  position: relative;
  padding-block: clamp(46px, 6.6vw, 92px);
}

.page-home .section--night {
  background: var(--night);
}

.page-home .section--pitch {
  background: var(--pitch);
}

.page-home .section--carbon {
  background: var(--carbon);
}

.page-home .section-head {
  display: grid;
  gap: 10px 22px;
  padding-bottom: 22px;
  margin-bottom: clamp(24px, 3.6vw, 42px);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 780px) {
  .page-home .section-head {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
  }
}

.page-home .section-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 56px);
  line-height: .85;
  letter-spacing: -.03em;
  color: #24384e;
  transition: color var(--t-mid);
}

.page-home .section-head__body > * + * {
  margin-top: 10px;
}

.page-home .section-head__body .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.page-home .section-head__body .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--cyan);
}

.page-home .section-head__body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.3vw, 36px);
  line-height: 1.14;
  letter-spacing: -.015em;
  color: var(--ivory);
}

.page-home .section-head__body p {
  margin: 0;
  max-width: 64ch;
  font-size: 14.5px;
  line-height: 1.85;
  color: #aebdc9;
}

/* 栏目入口 */
.page-home .index-map {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .page-home .index-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .page-home .index-map {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-home .index-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(168deg, rgba(11, 29, 51, .95), rgba(6, 10, 15, .98));
  overflow: hidden;
}

.page-home .index-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 3px;
  height: 100%;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform var(--t-mid);
}

.page-home .index-card:hover::after,
.page-home .index-card:focus-within::after {
  transform: scaleY(1);
}

.page-home .index-card__link {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.4vw, 28px);
  text-decoration: none;
}

.page-home .index-card__link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}

.page-home .index-card__no {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--lime);
  opacity: .85;
}

.page-home .index-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--ivory);
}

.page-home .index-card__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #a5b4c0;
}

.page-home .index-card__time {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--steel);
}

.page-home .index-card .link-arrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--lime);
}

.page-home .index-card__media {
  position: relative;
  border-top: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--carbon);
}

.page-home .index-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .7;
  filter: saturate(.7);
  transition: opacity var(--t-mid), transform var(--t-mid);
}

.page-home .index-card:hover .index-card__media img {
  opacity: .95;
  transform: scale(1.04);
}

/* 积分形势横向带 */
.page-home .standings__strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  background: var(--line);
  border: 1px solid var(--line);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.page-home .standings__strip:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.page-home .standings__strip::-webkit-scrollbar {
  height: 6px;
}

.page-home .standings__strip::-webkit-scrollbar-track {
  background: var(--carbon);
}

.page-home .standings__strip::-webkit-scrollbar-thumb {
  background: var(--line);
}

.page-home .standings__cell {
  flex: 1 0 214px;
  min-width: 214px;
  padding: 20px 18px;
  background: linear-gradient(170deg, rgba(11, 29, 51, .96), rgba(6, 10, 15, .98));
  scroll-snap-align: start;
}

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

.page-home .standings__league {
  margin: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ivory);
}

.page-home .standings__round {
  font-size: 11.5px;
  color: var(--steel);
}

.page-home .standings__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
}

.page-home .standings__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--lime);
}

.page-home .standings__metric--warn .standings__num {
  color: var(--alert);
}

.page-home .standings__desc {
  font-size: 12px;
  color: var(--steel);
}

.page-home .standings__cellfoot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--steel);
}

.page-home .standings__figure {
  margin: clamp(18px, 3vw, 30px) 0 0;
  padding: 14px;
  background: var(--night);
  border: 1px solid var(--line);
}

.page-home .standings__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.page-home .standings__figure .media-frame__caption {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--steel);
}

/* 伤停速递 */
.page-home .injury-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .injury {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 16px 0 16px 14px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}

.page-home .injury:hover {
  background: rgba(198, 255, 61, .04);
}

.page-home .injury::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--alert);
  opacity: .55;
}

.page-home .injury__body {
  flex: 1 1 260px;
  min-width: 0;
}

.page-home .injury__head {
  margin: 0 0 3px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ivory);
}

.page-home .injury__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #a5b4c0;
}

.page-home .injury__time {
  margin-left: auto;
  font-size: 11.5px;
  white-space: nowrap;
  color: var(--steel);
}

/* 安卓客户端 */
.page-home .client {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 900px) {
  .page-home .client {
    grid-template-columns: minmax(0, 1fr) minmax(0, .58fr);
  }
}

.page-home .client__specs {
  display: grid;
  gap: 1px;
  margin: 0 0 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.page-home .client__specs > div {
  padding: 14px 16px;
  background: var(--carbon);
}

.page-home .client__specs dt {
  margin-bottom: 4px;
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--steel);
}

.page-home .client__specs dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
}

.page-home .client__note {
  margin: 0 0 24px;
  max-width: 58ch;
  font-size: 14px;
  line-height: 1.85;
  color: #aebdc9;
}

.page-home .client__figure {
  margin: 0 auto;
  width: min(100%, 300px);
  padding: 12px;
  background: var(--carbon);
  border: 1px solid var(--line);
}

.page-home .client__figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
}

.page-home .client__figure .media-frame__caption {
  margin-top: 10px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--steel);
}

/* 刷新节奏 */
.page-home .watch-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.page-home .watch-table th,
.page-home .watch-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.page-home .watch-table thead th {
  background: var(--night);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}

.page-home .watch-table tbody th {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
  white-space: nowrap;
}

.page-home .watch-table tbody td {
  font-size: 13px;
  line-height: 1.75;
  color: #a5b4c0;
}

.page-home .watch-table tbody tr:nth-child(even) {
  background: rgba(27, 44, 63, .28);
}

.page-home .watch-table tbody tr:hover th,
.page-home .watch-table tbody tr:hover td {
  color: var(--ink);
}

.page-home .watch-table tbody tr.is-highlight {
  background: rgba(198, 255, 61, .08);
}

.page-home .watch-table tbody tr.is-highlight th {
  color: var(--lime);
}

.page-home .watch-note {
  margin: clamp(18px, 3vw, 28px) 0 0;
  max-width: 70ch;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--steel);
}

.page-home .watch-note a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .watch-note a:hover,
.page-home .watch-note a:focus-visible {
  color: var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .index-card::after,
  .page-home .index-card__media img,
  .page-home .fixture::before,
  .page-home .standings__strip,
  .page-home .section-index {
    transition: none;
  }
}
