.page-home {
  --ph-hero-bg: #0B1A16;
  --ph-hero-accent: #C9A227;
  --ph-hero-text: #F2EFE6;
  --ph-card-border: rgba(201, 162, 39, 0.25);
  --ph-card-bg: rgba(29, 92, 74, 0.12);
  --ph-dark-overlay: rgba(11, 26, 22, 0.72);
  --ph-tag-gold-bg: rgba(201, 162, 39, 0.14);
  --ph-tag-teal-bg: rgba(30, 105, 118, 0.18);
  --ph-tag-wine-bg: rgba(107, 31, 42, 0.24);
  position: relative;
  background: #0B1A16;
  color: var(--ph-hero-text);
  overflow-x: hidden;
}

.page-home .blueprint-grid {
  position: relative;
}

.page-home .blueprint-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 239, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 230, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
  pointer-events: none;
}

/* ------------------------------------------------------------------ */
/* 首屏 Hero                                                        */
/* ------------------------------------------------------------------ */
.page-home .ph-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, #0B1A16 0%, #123a30 60%, #1D5C4A 120%);
}

.page-home .ph-hero__grid {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-home .ph-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .ph-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ph-hero-accent);
  text-transform: uppercase;
  margin: 0 0 24px;
  animation: ph-fade-in 0.8s ease-out both;
}

.page-home .ph-kicker__line {
  width: 48px;
  height: 1px;
  background: var(--ph-hero-accent);
  display: inline-block;
}

.page-home .ph-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.16;
  color: var(--ph-hero-text);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  animation: ph-fade-in 0.8s 0.15s ease-out both;
}

.page-home .ph-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: rgba(242, 239, 230, 0.88);
  max-width: 600px;
  margin: 0 0 32px;
  border-left: 3px solid var(--ph-hero-accent);
  padding-left: 20px;
  animation: ph-fade-in 0.8s 0.3s ease-out both;
}

.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
  animation: ph-fade-in 0.8s 0.45s ease-out both;
}

.page-home .ph-hero__actions .button {
  min-width: 200px;
}

.page-home .ph-hero__actions .button--primary {
  background: var(--ph-hero-accent);
  color: #0B1A16;
  border-color: var(--ph-hero-accent);
}

.page-home .ph-hero__actions .button--primary:hover {
  background: transparent;
  color: var(--ph-hero-accent);
  box-shadow: inset 0 0 0 2px var(--ph-hero-accent);
}

.page-home .ph-hero__actions .button--ghost {
  border-color: rgba(242, 239, 230, 0.4);
  color: var(--ph-hero-text);
}

.page-home .ph-hero__actions .button--ghost:hover {
  border-color: var(--ph-hero-accent);
  color: var(--ph-hero-accent);
}

.page-home .ph-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  width: 100%;
  max-width: 480px;
  animation: ph-fade-in 0.8s 0.6s ease-out both;
}

.page-home .ph-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .ph-hero__stat dt {
  font-family: var(--font-data);
  font-size: 11px;
  color: #A8B3AD;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-home .ph-hero__stat dd {
  font-family: var(--font-data);
  font-size: 22px;
  font-weight: 700;
  color: var(--ph-hero-accent);
  margin: 0;
}

.page-home .ph-hero__visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.5);
  background: var(--ph-hero-bg);
  border-radius: 4px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ph-fade-in 0.8s 0.2s ease-out both;
}

.page-home .ph-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 22, 0) 40%, rgba(11, 26, 22, 0.78) 100%);
  pointer-events: none;
}

.page-home .ph-hero__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.page-home .ph-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.9;
}

.page-home .ph-hero__canvas svg {
  width: 100%;
  height: 100%;
}

.page-home .ph-svg__circle,
.page-home .ph-svg__line,
.page-home .ph-svg__rect,
.page-home .ph-svg__penalty {
  fill: none;
  stroke: rgba(201, 162, 39, 0.5);
  stroke-width: 1.2;
  transform-origin: center;
}

.page-home .ph-svg__circle:first-child {
  stroke-dasharray: 6 6;
}

.page-home .ph-svg__penalty {
  fill: rgba(201, 162, 39, 0.2);
  stroke: rgba(201, 162, 39, 0.7);
}

.page-home .ph-svg__label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.2em;
  fill: rgba(201, 162, 39, 0.75);
}

.page-home .ph-hero__tag {
  position: absolute;
  bottom: 16px;
  z-index: 3;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}

.page-home .ph-hero__tag--gold {
  left: 16px;
  background: var(--ph-tag-gold-bg);
  border: 1px solid rgba(201, 162, 39, 0.7);
  color: var(--ph-hero-accent);
}

.page-home .ph-hero__tag--teal {
  right: 16px;
  background: rgba(30, 105, 118, 0.3);
  border: 1px solid rgba(30, 105, 118, 0.7);
  color: rgba(242, 239, 230, 0.9);
}

.page-home .ph-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.page-home .ph-hero__scroll-text {
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(201, 162, 39, 0.7);
  writing-mode: vertical-rl;
}

.page-home .ph-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.8));
  animation: ph-scroll-pulse 2s ease-in-out infinite;
}

@keyframes ph-scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes ph-fade-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------ */
/* 面包屑                                                            */
/* ------------------------------------------------------------------ */
.page-home .ph-breadcrumb {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 12px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.06);
}

.page-home .ph-breadcrumb__link {
  color: var(--ph-hero-accent);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}

.page-home .ph-breadcrumb__link:hover {
  opacity: 0.7;
}

.page-home .ph-breadcrumb__sep {
  color: rgba(242, 239, 230, 0.3);
}

.page-home .ph-breadcrumb__current {
  color: #A8B3AD;
}

/* ------------------------------------------------------------------ */
/* 通用章节                                                          */
/* ------------------------------------------------------------------ */
.page-home .ph-section {
  padding: 80px 24px;
  position: relative;
}

.page-home .ph-section + .ph-section {
  border-top: 1px solid rgba(201, 162, 39, 0.14);
}

.page-home .ph-section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
  max-width: 1360px;
  width: 100%;
}

.page-home .ph-section__head-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.page-home .ph-section__head-left .chapter-label {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: var(--ph-hero-accent);
  margin: 0;
}

.page-home .ph-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0;
  color: #F2EFE6;
}

.page-home .ph-section__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #A8B3AD;
  max-width: 640px;
  margin: 0;
}

.page-home .container-wide {
  max-width: 1360px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------ */
/* 01 赛季总览                                                       */
/* ------------------------------------------------------------------ */
.page-home .ph-section--overview {
  background: #0B1A16;
}

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

.page-home .ph-overview__map {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 4px;
  overflow: hidden;
  background: #12302a;
}

.page-home .ph-overview__map img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.page-home .ph-overview__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 26, 22, 0.4), rgba(11, 26, 22, 0.1));
}

.page-home .ph-overview__map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #F2EFE6;
  background: rgba(11, 26, 22, 0.75);
  padding: 6px 12px;
  border-left: 2px solid var(--ph-hero-accent);
}

.page-home .ph-overview__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .ph-league-card {
  display: grid;
  grid-template-columns: 48px 1fr auto 24px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(29, 92, 74, 0.14);
  border: 1px solid rgba(242, 239, 230, 0.08);
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .ph-league-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.page-home .ph-league-card:hover {
  border-color: rgba(201, 162, 39, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.page-home .ph-league-card:hover::before {
  background: var(--ph-hero-accent);
}

.page-home .ph-league-card__no {
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.7);
}

.page-home .ph-league-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #F2EFE6;
}

.page-home .ph-league-card__meta {
  font-family: var(--font-data);
  font-size: 12px;
  color: #A8B3AD;
  white-space: nowrap;
}

.page-home .ph-league-card__arrow {
  color: rgba(201, 162, 39, 0.7);
  font-family: var(--font-data);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.page-home .ph-league-card:hover .ph-league-card__arrow {
  transform: translateX(4px);
}

.page-home .ph-overview__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--ph-hero-accent);
  text-decoration: none;
  padding: 8px 0;
  margin-top: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  align-self: flex-start;
}

.page-home .ph-overview__more:hover {
  border-bottom-color: var(--ph-hero-accent);
}

/* ------------------------------------------------------------------ */
/* 02 队伍库动态                                                     */
/* ------------------------------------------------------------------ */
.page-home .ph-section--updates {
  background: #0f2c28;
}

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

.page-home .ph-update-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.page-home .ph-update-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .ph-update-card .tag {
  margin: 0;
}

.page-home .ph-update-card__time {
  font-family: var(--font-data);
  font-size: 11px;
  color: #A8B3AD;
  letter-spacing: 0.08em;
}

.page-home .ph-update-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #F2EFE6;
  margin: 0;
  line-height: 1.3;
}

.page-home .ph-update-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #A8B3AD;
  margin: 0;
  flex-grow: 1;
}

.page-home .ph-update-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(242, 239, 230, 0.08);
}

.page-home .ph-update-card__team {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(201, 162, 39, 0.8);
}

.page-home .ph-update-card__link {
  font-size: 13px;
  color: #F2EFE6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.page-home .ph-update-card__link:hover {
  color: var(--ph-hero-accent);
  border-bottom-color: var(--ph-hero-accent);
}

/* ------------------------------------------------------------------ */
/* 03 数据服务                                                       */
/* ------------------------------------------------------------------ */
.page-home .ph-section--data {
  background: #12243a;
}

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

.page-home .ph-data__visual {
  order: 2;
}

.page-home .ph-data__visual img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.page-home .ph-data__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  order: 1;
}

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

.page-home .ph-data__item-no {
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--ph-hero-accent);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-home .ph-data__item:hover .ph-data__item-no {
  background: rgba(201, 162, 39, 0.25);
  border-color: var(--ph-hero-accent);
}

.page-home .ph-data__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #F2EFE6;
  margin: 0 0 8px;
}

.page-home .ph-data__item-text {
  font-size: 14px;
  line-height: 1.6;
  color: #A8B3AD;
  margin: 0;
}

/* ------------------------------------------------------------------ */
/* 04 移动收藏夹                                                     */
/* ------------------------------------------------------------------ */
.page-home .ph-section--app {
  background: linear-gradient(135deg, #1a3b44, #10232a);
}

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

.page-home .ph-app__content {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .ph-app__feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(242, 239, 230, 0.04);
  border: 1px solid rgba(242, 239, 230, 0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.page-home .ph-app__feature:hover {
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.06);
}

.page-home .ph-app__feature-no {
  font-family: var(--font-data);
  font-size: 14px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.9);
  border: 1px solid rgba(201, 162, 39, 0.4);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  flex-shrink: 0;
}

.page-home .ph-app__feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #F2EFE6;
  margin: 0 0 6px;
}

.page-home .ph-app__feature-text {
  font-size: 14px;
  line-height: 1.6;
  color: #A8B3AD;
  margin: 0;
}

.page-home .ph-app__cta {
  align-self: flex-start;
  margin-top: 12px;
}

.page-home .ph-app__visual {
  order: 1;
  background: rgba(11, 26, 22, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.page-home .ph-app__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .ph-app__visual::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(11, 26, 22, 0.9));
  pointer-events: none;
}

.page-home .ph-app__version {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ph-hero-accent);
  background: rgba(11, 26, 22, 0.85);
  padding: 4px 10px;
  border: 1px solid rgba(201, 162, 39, 0.5);
}

/* ------------------------------------------------------------------ */
/* 05 实时滚动                                                       */
/* ------------------------------------------------------------------ */
.page-home .ph-section--live {
  background: #0B1A16;
}

.page-home .ph-live__window {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(29, 92, 74, 0.1);
  max-width: 1360px;
  margin: 0 auto;
}

.page-home .ph-live__window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--speed-strip);
  z-index: 1;
}

.page-home .ph-live__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.08);
  background: rgba(11, 26, 22, 0.4);
}

.page-home .ph-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wine);
  animation: ph-dot-pulse 1.2s infinite;
}

@keyframes ph-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 31, 42, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(107, 31, 42, 0); }
}

.page-home .ph-live__bar-text {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(201, 162, 39, 0.95);
}

.page-home .ph-live__ticker {
  background-image:
    linear-gradient(45deg, rgba(30, 105, 118, 0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(30, 105, 118, 0.04) 25%, transparent 25%);
  background-size: 28px 28px;
}

.page-home .ph-live__item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.06);
  transition: background 0.3s ease;
}

.page-home .ph-live__item:hover {
  background: rgba(201, 162, 39, 0.05);
}

.page-home .ph-live__item:last-child {
  border-bottom: none;
}

.page-home .ph-live__time {
  font-family: var(--font-data);
  font-size: 12px;
  color: rgba(201, 162, 39, 0.75);
  letter-spacing: 0.06em;
}

.page-home .ph-live__content {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #F2EFE6;
  background: linear-gradient(90deg, #F2EFE6, #F2EFE6);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left bottom;
  transition: background-size 0.4s ease, color 0.3s ease;
}

.page-home .ph-live__item:hover .ph-live__content {
  background-size: 100% 1px;
  color: var(--ph-hero-accent);
}

.page-home .ph-live__badge {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(201, 162, 39, 0.8);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  white-space: nowrap;
}

.page-home .ph-live__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--ph-hero-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.2s ease;
}

.page-home .ph-live__more:hover {
  border-bottom-color: var(--ph-hero-accent);
}

/* ------------------------------------------------------------------ */
/* 大屏断点 ≥980px                                                  */
/* ------------------------------------------------------------------ */
@media (min-width: 980px) {
  .page-home .ph-hero {
    padding: 120px 40px 100px;
  }

  .page-home .ph-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }

  .page-home .ph-hero__visual {
    min-height: 460px;
  }

  .page-home .ph-hero__img {
    min-height: 460px;
  }

  .page-home .ph-hero__canvas svg {
    width: 100%;
    overflow: visible;
  }

  .page-home .ph-section {
    padding: 100px 40px;
  }

  .page-home .ph-section__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 48px;
  }

  .page-home .ph-section__desc {
    font-size: 16px;
  }

  .page-home .ph-overview__grid,
  .page-home .ph-data__layout,
  .page-home .ph-app__layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home .ph-data__visual {
    order: 1;
  }

  .page-home .ph-data__list {
    order: 2;
  }

  .page-home .ph-app__content {
    order: 1;
  }

  .page-home .ph-app__visual {
    order: 2;
  }

  .page-home .ph-updates__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .page-home .ph-league-card {
    padding-left: 24px;
  }

  .page-home .ph-live__item {
    grid-template-columns: 90px 1fr;
    padding: 20px 32px;
  }
}

/* ------------------------------------------------------------------ */
/* 超大屏收缩                                                        */
/* ------------------------------------------------------------------ */
@media (min-width: 1600px) {
  .page-home .ph-hero__grid,
  .page-home .ph-section .container-wide {
    max-width: 1520px;
  }
}
