.page-home {
  position: relative;
  display: block;
  overflow-x: clip;
  background:
    radial-gradient(1100px 420px at 88% -6%, rgba(255,106,0, .14), transparent 62%),
    radial-gradient(860px 460px at 4% 24%, rgba(0,168,181, .10), transparent 58%),
    var(--bg);
  color: var(--text);
  font-family: var(--body-font);
}

.page-home .breadcrumb {
  font-size: 13px;
}

.page-home .ph-entry {
  position: relative;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 28px 20px 0;
}

.page-home .ph-entry-grid {
  position: absolute;
  top: 26px;
  right: 20px;
  left: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  overflow: hidden;
  pointer-events: none;
  opacity: .32;
  white-space: nowrap;
  font-family: var(--data-font);
  font-size: 12px;
  color: var(--muted);
}

.page-home .ph-entry-grid span {
  padding: 7px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: var(--radius-pill);
  background: rgba(21,26,36, .48);
}

.page-home .ph-entry-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .ph-entry-sync {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(21,26,36, .72);
  color: var(--muted);
  font-size: 13px;
}

.page-home .ph-entry-titleblock {
  position: relative;
  z-index: 1;
  margin-top: 72px;
}

.page-home .ph-entry-title {
  margin: 8px 0 10px;
  font-family: var(--heading-font);
  font-size: clamp(3.6rem, 15vw, 8.6rem);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--text);
  text-shadow: 0 0 70px rgba(255,106,0, .45);
}

.page-home .ph-entry-titleblock .lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .ph-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-home .ph-feature-match {
  position: relative;
  margin-top: 42px;
  min-height: 460px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-1);
  isolation: isolate;
}

.page-home .ph-feature-match-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(1.1);
}

.page-home .ph-feature-match::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,14,20, .04) 0%, rgba(11,14,20, .82) 78%),
    radial-gradient(600px 180px at 50% 100%, rgba(255,106,0, .20), transparent 70%);
}

.page-home .ph-feature-match-body {
  width: 100%;
  padding: 20px 18px 18px;
  background: rgba(21,26,36, .30);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255, .10);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.page-home .ph-feature-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .ph-live-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.page-home .ph-feature-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 12px;
}

.page-home .ph-team-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .ph-team-cell:first-child {
  align-items: flex-start;
}

.page-home .ph-team-cell:last-child {
  align-items: flex-end;
  text-align: right;
}

.page-home .ph-team-name {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-home .ph-team-score {
  font-family: var(--data-font);
  font-size: clamp(3rem, 9vw, 4.6rem);
  line-height: 1;
  color: var(--text);
}

.page-home .ph-feature-vs {
  color: var(--orange);
  opacity: .85;
}

.page-home .ph-feature-stats {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255, .09);
}

.page-home .ph-donut-block {
  min-width: 0;
}

.page-home .ph-stat-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-home .ph-donut-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-home .ph-donut {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
}

.page-home .ph-donut-bg {
  stroke: var(--border);
}

.page-home .ph-donut-og {
  stroke: var(--orange);
}

.page-home .ph-donut-cy {
  stroke: var(--cyan);
  stroke-linecap: round;
}

.page-home .ph-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.page-home .ph-donut-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.page-home .ph-donut-legend strong {
  font-family: var(--data-font);
  color: var(--text);
}

.page-home .ph-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.page-home .ph-dot--orange {
  background: var(--orange);
}

.page-home .ph-dot--cyan {
  background: var(--cyan);
}

.page-home .ph-feature-nums {
  display: flex;
  gap: 16px;
}

.page-home .ph-num-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 62px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: rgba(11,14,20, .42);
  border: 1px solid var(--border);
}

.page-home .ph-num-cell strong {
  font-family: var(--data-font);
  font-size: 22px;
  line-height: 1;
}

.page-home .ph-num-cell small {
  color: var(--muted);
  font-family: var(--data-font);
  font-size: 13px;
}

.page-home .ph-feature-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange-bright);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-home .ph-section {
  position: relative;
  max-width: var(--container-w);
  margin-inline: auto;
  padding: 76px 20px 40px;
}

.page-home .ph-section + .ph-section {
  border-top: 1px solid rgba(255,255,255, .06);
}

.page-home .ph-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.page-home .ph-section-head .kicker {
  color: var(--orange);
}

.page-home .ph-section-head h2 {
  margin: 6px 0 8px;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  letter-spacing: .02em;
  line-height: 1.1;
}

.page-home .ph-section-desc {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .ph-refresh-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(0,168,181, .10);
  border: 1px solid rgba(0,168,181, .35);
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.page-home .ph-section-index {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,106,0, .12);
  border: 1px solid rgba(255,106,0, .35);
  color: var(--orange-bright);
  font-family: var(--data-font);
  font-size: 13px;
  letter-spacing: .04em;
}

.page-home .ph-match-tabs {
  margin-top: 8px;
}

.page-home .ph-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.page-home .ph-tab-btn {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255, .05);
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}

.page-home .ph-tab-btn[aria-selected="true"],
.page-home .ph-tab-btn.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.page-home .ph-tab-panel {
  display: block;
}

.page-home .ph-tab-panel + .ph-tab-panel {
  margin-top: 28px;
}

.page-home .ph-match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .ph-match-card {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(30,38,50, .88), rgba(21,26,36, .92));
  border: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(0,0,0, .22);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.page-home .ph-match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0, .65);
  box-shadow: var(--shadow-2);
}

.page-home .ph-match-card--upset {
  background: linear-gradient(145deg, rgba(30,38,50, .85), rgba(11,14,20, .94));
  border-left: 3px solid var(--cyan);
}

.page-home .ph-match-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .ph-round-tag {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255, .07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.page-home .ph-card-scoreline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .ph-card-team {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.page-home .ph-card-team strong {
  font-family: var(--data-font);
  font-size: 34px;
  line-height: 1;
  color: var(--text);
}

.page-home .ph-card-possession {
  display: grid;
  gap: 10px;
}

.page-home .ph-bar-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(80px, 1.3fr) 40px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.page-home .ph-bar-team {
  display: inline-block;
  min-width: 0;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .ph-bar-team strong {
  color: var(--text);
  font-family: var(--data-font);
  font-weight: 400;
}

.page-home .ph-bar-team--home {
  text-align: left;
}

.page-home .ph-bar-team--away {
  text-align: right;
}

.page-home .ph-bar-track {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255, .08);
  overflow: hidden;
}

.page-home .ph-bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--orange), var(--orange-bright));
}

.page-home .ph-bar-fill--away {
  background: linear-gradient(90deg, rgba(0,168,181, .60), var(--cyan));
}

.page-home .ph-bar-pct {
  font-family: var(--data-font);
  font-size: 14px;
  color: var(--text);
  text-align: right;
}

.page-home .ph-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255, .06);
}

.page-home .ph-card-links a {
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 0;
}

.page-home .ph-card-links a:last-child {
  color: var(--muted);
}

.page-home .ph-season-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .ph-schedule-menu {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(30,38,50, .72), rgba(21,26,36, .90));
  border: 1px solid var(--border);
}

.page-home .ph-schedule-menu h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

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

.page-home .ph-schedule-list li + li {
  border-top: 1px solid rgba(255,255,255, .05);
}

.page-home .ph-schedule-list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s ease, padding-left .25s ease;
}

.page-home .ph-schedule-list a span {
  min-width: 52px;
  font-family: var(--data-font);
  color: var(--orange);
  font-size: 13px;
}

.page-home .ph-schedule-list a:hover {
  color: var(--text);
  padding-left: 12px;
}

.page-home .ph-schedule-note {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(0,168,181, .08);
  border: 1px solid rgba(0,168,181, .25);
  color: var(--cyan-light);
  font-size: 13px;
  line-height: 1.7;
}

.page-home .ph-trend-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(21,26,36, .82);
  border: 1px solid var(--border);
}

.page-home .ph-trend-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .ph-trend-head h3 {
  margin: 0;
  font-size: 18px;
}

.page-home .ph-trend-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .ph-trend-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.page-home .ph-trend-bars {
  display: grid;
  gap: 9px;
}

.page-home .ph-trend-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 12px;
}

.page-home .ph-trend-name {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .ph-trend-name em {
  font-style: normal;
  color: var(--text);
  font-family: var(--data-font);
}

.page-home .ph-trend-track {
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255, .07);
  overflow: hidden;
}

.page-home .ph-trend-track i {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, rgba(255,106,0, .55), var(--orange-bright));
}

.page-home .ph-trend-foot {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-home .ph-live-section {
  padding-top: 60px;
}

.page-home .ph-live-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .ph-events-panel,
.page-home .ph-chase-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(21,26,36, .82);
  overflow: hidden;
}

.page-home .ph-events-panel {
  padding: 22px;
}

.page-home .ph-events-panel h3,
.page-home .ph-chase-body h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.page-home .ph-events-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.page-home .ph-event-item {
  display: grid;
  grid-template-columns: 44px 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255, .05);
  font-size: 14px;
}

.page-home .ph-event-item:last-child {
  border-bottom: 0;
}

.page-home .ph-event-time {
  font-family: var(--data-font);
  color: var(--muted);
  font-size: 13px;
}

.page-home .ph-event-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.page-home .ph-event-card--yellow {
  background: #FFC53D;
  color: #151A24;
}

.page-home .ph-event-card--red {
  background: #FF3B30;
  color: #fff;
}

.page-home .ph-event-detail {
  color: var(--text);
  line-height: 1.5;
}

.page-home .ph-panel-link,
.page-home .ph-chase-body a {
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.page-home .ph-chase-panel {
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .ph-chase-img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}

.page-home .ph-chase-body {
  padding: 22px;
}

.page-home .ph-chase-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .ph-chase-item {
  position: relative;
  padding-left: 58px;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.page-home .ph-chase-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(255,106,0, .12));
  border-radius: 2px;
}

.page-home .ph-chase-item::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid rgba(255,106,0, .25);
}

.page-home .ph-chase-min {
  position: absolute;
  left: 0;
  font-family: var(--data-font);
  font-size: 13px;
  color: var(--muted);
  width: 40px;
}

.page-home .ph-chase-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .ph-archive-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 70px;
}

.page-home .ph-archive-cover-wrap {
  order: 1;
}

.page-home .ph-archive-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-1);
}

.page-home .ph-archive-copy {
  order: 2;
}

.page-home .ph-archive-copy .kicker {
  color: var(--cyan);
}

.page-home .ph-archive-copy h2 {
  margin: 6px 0 14px;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  line-height: 1.12;
}

.page-home .ph-archive-text {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.page-home .ph-archive-stats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .ph-archive-stats li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255, .04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.page-home .ph-archive-stats strong {
  color: var(--orange-bright);
  font-family: var(--data-font);
  font-size: 20px;
}

@media (min-width: 640px) {
  .page-home .ph-match-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .ph-trend-visual {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
  }

  .page-home .ph-chase-panel {
    grid-template-columns: 220px 1fr;
  }

  .page-home .ph-chase-img {
    max-height: none;
  }
}

@media (min-width: 992px) {
  .page-home .ph-entry {
    padding-top: 36px;
  }

  .page-home .ph-entry-titleblock {
    margin-top: 96px;
  }

  .page-home .ph-entry-titleblock .lead {
    font-size: 18px;
  }

  .page-home .ph-feature-match {
    min-height: 520px;
  }

  .page-home .ph-feature-match-body {
    padding: 28px 32px 24px;
  }

  .page-home .ph-feature-stats {
    grid-template-columns: 1.2fr auto;
  }

  .page-home .ph-section {
    padding: 92px 24px 56px;
  }

  .page-home .ph-season-grid {
    grid-template-columns: 340px 1fr;
  }

  .page-home .ph-live-layout {
    grid-template-columns: 1.1fr 1fr;
  }

  .page-home .ph-archive-section {
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .ph-archive-cover-wrap {
    order: 1;
  }

  .page-home .ph-archive-copy {
    order: 0;
  }
}

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

  .page-home .ph-tab-panel[data-tab-panel="焦点"] .ph-match-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .page-home .ph-match-card:hover {
    transform: none;
  }
}
