.page-home {
  background: var(--white);
  color: var(--text);
  overflow-x: clip;
}
.page-home,
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}
.page-home img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home a {
  color: inherit;
  text-decoration: none;
}

/* ---- 状态简报区 ---- */
.page-home .home-status {
  position: relative;
  background: var(--primary);
  color: var(--white);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%);
}
.page-home .home-status__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.page-home .home-status__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.page-home .home-status__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 27, 61, 0.82) 0%, rgba(10, 27, 61, 0.36) 60%, rgba(10, 27, 61, 0.68) 100%),
    repeating-linear-gradient(to bottom, rgba(212, 168, 67, 0.06) 0 1px, transparent 1px 4px);
}
.page-home .home-status__inner {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  padding-bottom: clamp(52px, 7vw, 88px);
}

/* 面包屑 */
.page-home .home-breadcrumb {
  margin-bottom: 22px;
}
.page-home .home-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.76);
}
.page-home .home-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-home .home-breadcrumb__item + .home-breadcrumb__item::before {
  content: "/";
  color: rgba(212, 168, 67, 0.7);
  font-family: var(--font-mono);
  font-size: 12px;
}
.page-home .home-breadcrumb__link {
  color: rgba(245, 247, 250, 0.88);
  transition: color var(--transition);
}
.page-home .home-breadcrumb__link:hover {
  color: var(--cyan);
}
.page-home .home-breadcrumb__item[aria-current="page"] {
  color: var(--gold);
  font-weight: 700;
}

/* 状态标题区 */
.page-home .home-status__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.page-home .home-status__eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.page-home .home-status__title {
  margin: 0 0 14px;
  max-width: 880px;
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
}
.page-home .home-status__lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.88);
}
.page-home .home-status__notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  max-width: 820px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 90, 54, 0.12);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.9);
}
.page-home .home-status__notice-mark {
  flex: none;
  padding: 2px 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* 状态卡片 */
.page-home .home-status__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
.page-home .status-card {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px 20px 18px;
  background: rgba(245, 247, 250, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top-width: 3px;
  min-height: 130px;
}
.page-home .status-card--ok { border-top-color: var(--gold); }
.page-home .status-card--healed { border-top-color: var(--cyan); }
.page-home .status-card--sync { border-top-color: var(--gold); }
.page-home .status-card--live { border-top-color: var(--accent); }
.page-home .status-card__light {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--steel);
}
.page-home .status-card--ok .status-card__light { background: var(--gold); }
.page-home .status-card--healed .status-card__light { background: var(--cyan); }
.page-home .status-card--sync .status-card__light { background: var(--gold); }
.page-home .status-card--live .status-card__light { background: var(--accent); }
.page-home .status-card__key {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 247, 250, 0.66);
}
.page-home .status-card__value {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  color: var(--white);
}
.page-home .status-card__value--num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold);
}
.page-home .status-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.76);
}

/* ---- 速查目录 ---- */
.page-home .home-gov-wrap {
  position: relative;
  z-index: 4;
  margin-top: -22px;
  margin-bottom: 10px;
}
.page-home .home-gov {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  box-shadow: 0 14px 36px rgba(10, 27, 61, 0.18);
}
.page-home .home-gov__label {
  margin-right: 4px;
  padding: 3px 8px;
  background: var(--primary);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-home .home-gov__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.page-home .home-gov__link em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  color: var(--gold);
}
.page-home .home-gov__link:hover {
  background: rgba(212, 168, 67, 0.12);
  color: var(--primary);
}
.page-home .home-gov__link--help {
  margin-left: auto;
  color: var(--text-soft);
  border: 1px solid var(--line);
}
.page-home .home-gov__link--help:hover {
  border-color: var(--gold);
  color: var(--primary);
}

/* ---- 通用章节 ---- */
.page-home .home-section {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
}
.page-home .home-section__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}
.page-home .home-section__titlebox {
  display: grid;
  gap: 6px;
}
.page-home .home-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.page-home .home-section__kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
}
.page-home .home-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  color: var(--text);
}
.page-home .home-section__desc {
  margin: 4px 0 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-soft);
}
.page-home .home-section__more {
  align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.page-home .home-section__more:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ---- 赛程中心 ---- */
.page-home .schedule-section {
  background: var(--white);
}
.page-home .schedule-section__grid {
  display: grid;
  gap: 28px;
}
.page-home .schedule-section__list {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px 16px 4px;
}
.page-home .schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.page-home .schedule-tab {
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-soft);
  cursor: default;
  transition: all var(--transition);
}
.page-home .schedule-tab.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.page-home .schedule-tab:not(.is-active):hover {
  border-color: var(--gold);
  color: var(--primary);
}
.page-home .match-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(10, 27, 61, 0.1);
}
.page-home .match-row__lg {
  flex: none;
  padding: 2px 8px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.page-home .match-row__teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1 1 210px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.page-home .match-row__teams i {
  font-style: normal;
  font-size: 12px;
  color: var(--steel);
}
.page-home .match-row__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-soft);
}
.page-home .schedule-section__figure {
  margin: 0;
  background: #edf2f8;
}
.page-home .schedule-section__figure figcaption,
.page-home .injuries-section__figure figcaption,
.page-home .standings-section__figure figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-soft);
  background: rgba(10, 27, 61, 0.03);
  border-top: 1px solid var(--line);
}

/* ---- 伤停信息 ---- */
.page-home .injuries-section {
  background: #f1f4f9;
}
.page-home .injuries-section__grid {
  display: grid;
  gap: 16px;
}
.page-home .team-injury {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(10, 27, 61, 0.05);
}
.page-home .team-injury__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 2px solid var(--gold);
}
.page-home .team-injury__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}
.page-home .team-injury__rows {
  padding: 6px 16px 14px;
}
.page-home .injury-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(10, 27, 61, 0.1);
}
.page-home .injury-item:last-child {
  border-bottom: 0;
}
.page-home .injury-item__player {
  flex: 0 0 84px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.page-home .injury-item__type {
  flex: 1 1 90px;
  font-size: 13px;
  color: var(--text-soft);
}
.page-home .injury-item__rest {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 3px 8px;
  background: rgba(212, 168, 67, 0.14);
  color: var(--text);
}
.page-home .injuries-section__figure {
  margin: 0;
  background: #e7ecf4;
}

/* ---- 联赛排名 ---- */
.page-home .standings-section {
  background: linear-gradient(180deg, var(--white) 0%, #eef2f7 100%);
  position: relative;
}
.page-home .standings-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(38vw, 480px);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold));
}
.page-home .standings-section__grid {
  display: grid;
  gap: 26px;
}
.page-home .standings-section__figure {
  margin: 0;
  background: #dfe6ef;
}
.page-home .standings-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(10, 27, 61, 0.05);
}
.page-home .standings-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
}
.page-home .standings-table__caption {
  caption-side: top;
  text-align: left;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--primary);
}
.page-home .standings-table th {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}
.page-home .standings-table td {
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(10, 27, 61, 0.06);
}
.page-home .standings-table tbody tr:nth-child(even) {
  background: rgba(10, 27, 61, 0.02);
}
.page-home .standings-table .standings-table__lead {
  background: rgba(212, 168, 67, 0.1);
}
.page-home .standings-table .standings-table__lead td:first-child {
  color: var(--gold);
  font-weight: 700;
}

/* ---- 赛后战报 ---- */
.page-home .reports-section {
  background: var(--white);
}
.page-home .reports-section__grid {
  display: grid;
  gap: 20px;
}
.page-home .report-card {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-top-width: 3px;
  border-top-color: var(--gold);
  background: var(--white);
}
.page-home .report-card--draw {
  border-top-color: var(--steel);
}
.page-home .report-card--hoop {
  border-top-color: var(--accent);
}
.page-home .report-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.page-home .report-card__meta {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.page-home .report-card__score {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--text);
}
.page-home .report-card--draw .report-card__score {
  color: var(--steel);
}
.page-home .report-card--hoop .report-card__score {
  color: var(--primary);
}
.page-home .report-card__teams {
  margin: 12px 0 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.page-home .report-card__teams b {
  font-weight: 400;
  color: var(--steel);
  padding: 0 6px;
}
.page-home .report-card__summary {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-soft);
}
.page-home .report-card__more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 90, 54, 0.5);
  transition: border-color var(--transition), color var(--transition);
}
.page-home .report-card__more:hover {
  color: var(--primary);
  border-color: var(--primary);
}

/* ---- 底部能力导航 ---- */
.page-home .home-capability {
  position: relative;
  background: var(--primary-deep);
  color: var(--white);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 26px, 100% 100%, 0 100%);
  padding-top: clamp(68px, 8vw, 96px);
  padding-bottom: clamp(44px, 6vw, 72px);
}
.page-home .home-capability::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  background: linear-gradient(225deg, rgba(212, 168, 67, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-home .home-capability__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}
.page-home .home-capability__code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-home .home-capability__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.2;
  color: var(--white);
}
.page-home .home-capability__desc {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.72);
}
.page-home .home-capability__nav {
  display: grid;
  gap: 10px;
}
.page-home .cap-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 14px 16px;
  background: rgba(245, 247, 250, 0.04);
  border-left: 3px solid var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.page-home .cap-link span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 247, 250, 0.6);
}
.page-home .cap-link:hover {
  background: rgba(212, 168, 67, 0.12);
  border-left-color: var(--accent);
  transform: translateX(4px);
}

/* ---- 响应式：平板 ---- */
@media (min-width: 700px) {
  .page-home .home-status__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-home .injuries-section__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
  .page-home .reports-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
  .page-home .home-section__more {
    margin-bottom: 2px;
    flex: none;
  }
  .page-home .home-capability__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 48px;
  }
}

/* ---- 响应式：桌面 ---- */
@media (min-width: 1024px) {
  .page-home .home-status__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-status__notice {
    margin-left: 0;
  }
  .page-home .home-gov {
    padding: 14px 22px;
  }
  .page-home .schedule-section__grid {
    grid-template-columns: 1fr 360px;
    align-items: center;
  }
  .page-home .injuries-section__grid {
    grid-template-columns: repeat(3, 1fr) 300px;
    align-items: stretch;
  }
  .page-home .standings-section__grid {
    grid-template-columns: 420px 1fr;
    align-items: center;
  }
  .page-home .reports-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-section__title {
    font-size: 34px;
  }
  .page-home .home-section__desc {
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .page-home .home-status__inner {
    padding-top: 36px;
  }
  .page-home .home-status__lead {
    font-size: 17px;
  }
  .page-home .home-gov__link {
    padding: 8px 14px;
  }
}
<<<PAGE_CSS_END>>>
