.page-home {
  --ph-gap: 24px;
  --ph-gap-lg: clamp(32px, 6vw, 72px);
  background: var(--bg-deep);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
}
.page-home .container {
  max-width: var(--content-max);
}
.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-home .badge,
.page-home .btn,
.page-home .stat {
  position: relative;
  z-index: 1;
}

/* ========== Hero 首屏 ========== */
.page-home .ph-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 96px;
  background:
    radial-gradient(circle at 12% 28%, rgba(0, 229, 255, 0.10), transparent 30%),
    radial-gradient(circle at 78% 82%, rgba(198, 255, 58, 0.06), transparent 32%),
    var(--bg-deep);
  border-bottom: 1px solid rgba(168, 176, 192, 0.16);
}
.page-home .ph-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--ph-gap-lg);
  align-items: stretch;
}
.page-home .ph-hero__intro {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
}
.page-home .ph-hero__bg {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.page-home .ph-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(13, 15, 26, 0.16) 0%, rgba(13, 15, 26, 0.76) 78%);
}
.page-home .ph-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .ph-hero__content {
  position: relative;
  z-index: 2;
  padding: 44px 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.page-home .ph-hero__title {
  font-family: var(--font-head);
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.01em;
  margin: 14px 0 18px;
  color: var(--text-light);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
}
.page-home .ph-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 245, 255, 0.82);
  max-width: 34em;
  margin: 0;
}
.page-home .ph-hero__stats {
  display: flex;
  gap: 26px;
  margin: 26px 0 18px;
}
.page-home .ph-hero__stats .stat__value {
  font-family: var(--font-data);
  font-size: 26px;
  color: var(--accent-green);
  line-height: 1;
}
.page-home .ph-hero__stats .stat__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.page-home .ph-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.page-home .ph-hero__index {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 176, 192, 0.16);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}
.page-home .ph-index__link {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.2s ease;
}
.page-home .ph-index__link:hover {
  background: rgba(198, 255, 58, 0.08);
}
.page-home .ph-index__num {
  grid-row: span 2;
  font-family: var(--font-data);
  color: var(--accent-blue);
  font-size: 15px;
  line-height: 1;
}
.page-home .ph-index__name {
  font-size: 15px;
  font-weight: 700;
}
.page-home .ph-index__desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== 射门统计仪表盘 ========== */
.page-home .ph-dashboard {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-trench));
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}
.page-home .ph-dashboard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.page-home .ph-dashboard__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.18;
  letter-spacing: 0.03em;
  margin: 10px 0 0;
}
.page-home .ph-dashboard__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--accent-green);
  background: rgba(198, 255, 58, 0.12);
  border-radius: var(--radius-pill);
  padding: 7px 13px;
  white-space: nowrap;
  border: 1px solid rgba(198, 255, 58, 0.2);
}
.page-home .ph-dashboard__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: ph-pulse 1.6s ease-in-out infinite;
}
@keyframes ph-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.page-home .ph-dashboard__matches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.page-home .ph-matchcard {
  background: var(--bg-deep);
  border: 1px solid rgba(168, 176, 192, 0.16);
  border-radius: var(--radius-card);
  padding: 18px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.page-home .ph-matchcard:hover {
  border-color: rgba(198, 255, 58, 0.4);
  transform: translateY(-2px);
}
.page-home .ph-matchcard__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.page-home .ph-matchcard__round {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--text-muted);
}
.page-home .ph-matchcard__fav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.34);
  background: transparent;
  color: var(--accent-blue);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.page-home .ph-matchcard__fav:hover,
.page-home .ph-matchcard__fav[aria-pressed="true"] {
  background: rgba(198, 255, 58, 0.1);
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.page-home .ph-matchcard__score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin: 16px 0;
}
.page-home .ph-matchcard__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.page-home .ph-matchcard__teamname {
  font-size: 13px;
  color: var(--text-muted);
}
.page-home .ph-matchcard__teamnum {
  font-family: var(--font-data);
  font-size: 34px;
  line-height: 1;
  color: var(--text-light);
}
.page-home .ph-matchcard__teamlabel {
  font-size: 11px;
  color: var(--accent-blue);
  letter-spacing: 0.08em;
}
.page-home .ph-matchcard__vs {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--text-muted);
}
.page-home .ph-chart {
  display: grid;
  gap: 8px;
  margin: 12px 0 4px;
}
.page-home .ph-chart__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.page-home .ph-chart__label {
  font-size: 12px;
  color: var(--text-muted);
  min-width: 40px;
}
.page-home .ph-chart__track {
  height: 34px;
  background: rgba(168, 176, 192, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.page-home .ph-chart__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transition: width 0.6s ease;
}
.page-home .ph-fill--m1a,
.page-home .ph-fill--m2b {
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}
.page-home .ph-fill--m1b,
.page-home .ph-fill--m2a {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.35), var(--accent-blue));
}
.page-home .ph-fill--m1a { width: 61%; }
.page-home .ph-fill--m1b { width: 39%; }
.page-home .ph-fill--m2a { width: 42%; }
.page-home .ph-fill--m2b { width: 58%; }
.page-home .ph-chart__value {
  font-family: var(--font-data);
  font-size: 16px;
  color: var(--text-light);
}
.page-home .ph-matchcard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(168, 176, 192, 0.22);
}
.page-home .ph-matchcard__meta div {
  display: flex;
  gap: 6px;
  font-size: 12px;
}
.page-home .ph-matchcard__meta dt {
  color: var(--text-muted);
}
.page-home .ph-matchcard__meta dd {
  margin: 0;
  font-family: var(--font-data);
  color: var(--text-light);
}
.page-home .ph-dashboard__foot {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

/* ========== 平台服务速览 ========== */
.page-home .ph-services {
  position: relative;
  padding: 96px 0 104px;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-card) 64%);
}
.page-home .ph-blockhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}
.page-home .ph-blockhead h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}
.page-home .ph-blockhead__lead {
  max-width: 480px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}
.page-home .ph-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.page-home .ph-servicecard {
  background: var(--bg-card);
  border: 1px solid rgba(168, 176, 192, 0.12);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.page-home .ph-servicecard:hover {
  border-color: rgba(198, 255, 58, 0.4);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}
.page-home .ph-servicecard--feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.page-home .ph-servicecard__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.page-home .ph-servicecard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page-home .ph-servicecard:hover .ph-servicecard__media img {
  transform: scale(1.04);
}
.page-home .ph-servicecard__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .ph-servicecard__step {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent-blue);
  background: rgba(0, 229, 255, 0.07);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 14px;
}
.page-home .ph-servicecard h3 {
  font-family: var(--font-head);
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
}
.page-home .ph-servicecard p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.68;
  margin: 0 0 20px;
}
.page-home .ph-servicecard__data {
  display: flex;
  gap: 22px;
  margin: 0 0 24px;
}
.page-home .ph-servicecard__data div {
  border-left: 2px solid var(--accent-green);
  padding-left: 10px;
}
.page-home .ph-servicecard__data dt {
  font-size: 12px;
  color: var(--text-muted);
}
.page-home .ph-servicecard__data dd {
  margin: 2px 0 0;
  font-family: var(--font-data);
  font-size: 20px;
  color: var(--text-light);
}
.page-home .ph-servicecard .btn {
  margin-top: auto;
}

/* ========== 数据覆盖范围 ========== */
.page-home .ph-coverage {
  position: relative;
  padding: 104px 0;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-trench) 120%);
}
.page-home .ph-coverage__body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}
.page-home .ph-coverage__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}
.page-home .ph-coverage__visual img {
  width: 100%;
  height: auto;
}
.page-home .ph-coverage__visual figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(13, 15, 26, 0.82);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  color: var(--text-light);
}
.page-home .ph-league-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  list-style: none;
  margin: 0 0 22px;
  padding: 0 0 14px;
  -webkit-overflow-scrolling: touch;
}
.page-home .ph-league-tag {
  flex: 0 0 auto;
  background: rgba(26, 34, 51, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.24);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-home .ph-league-tag:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}
.page-home .ph-coverage__note {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 26px;
}
.page-home .ph-coverage__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(168, 176, 192, 0.16);
}
.page-home .ph-coverage__stats .stat__value {
  font-family: var(--font-data);
  font-size: 32px;
  color: var(--accent-green);
  line-height: 1;
}
.page-home .ph-coverage__stats .stat__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ========== 品牌故事预览 ========== */
.page-home .ph-story {
  padding: 96px 0;
  background: var(--bg-deep);
}
.page-home .ph-story__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.page-home .ph-story__copy h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0.02em;
  margin: 12px 0 18px;
}
.page-home .ph-story__copy p {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 46em;
}
.page-home .ph-story__timeline {
  display: grid;
  gap: 16px;
}
.page-home .ph-story__timeline article {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(168, 176, 192, 0.12);
  border-radius: var(--radius-card);
  padding: 22px 24px;
}
.page-home .ph-story__timeline article:hover {
  border-color: rgba(0, 229, 255, 0.36);
}
.page-home .ph-story__timeline .data-num {
  font-family: var(--font-data);
  font-size: 28px;
  color: var(--accent-blue);
  flex: 0 0 auto;
}
.page-home .ph-story__timeline p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ========== 最新更新动态 ========== */
.page-home .ph-updates {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-card) 120%);
}
.page-home .ph-updates__list {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}
.page-home .ph-update-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(168, 176, 192, 0.12);
  border-left: 3px solid rgba(198, 255, 58, 0.4);
  border-radius: 16px;
  padding: 22px 26px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.page-home .ph-update-item:hover {
  background: var(--bg-trench);
  border-left-color: var(--accent-green);
}
.page-home .ph-update-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), rgba(198, 255, 58, 0.1));
  border: 1px solid rgba(0, 229, 255, 0.3);
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--text-light);
}
.page-home .ph-update-item h3 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.page-home .ph-update-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.page-home .ph-update-item__badge {
  white-space: nowrap;
}

/* ========== 球迷高频问题 ========== */
.page-home .ph-faq {
  padding: 104px 0;
  background: var(--bg-deep);
}
.page-home .ph-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 48px;
  align-items: start;
}
.page-home .ph-faq__main .ph-blockhead {
  margin-bottom: 28px;
}
.page-home .ph-faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(168, 176, 192, 0.12);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.page-home .ph-faq-item[open] {
  border-color: rgba(198, 255, 58, 0.42);
}
.page-home .ph-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.page-home .ph-faq-item summary::-webkit-details-marker {
  display: none;
}
.page-home .ph-faq-item summary::after {
  content: "+";
  font-family: var(--font-data);
  font-size: 24px;
  line-height: 1;
  color: var(--accent-blue);
  transition: transform 0.2s ease, color 0.2s ease;
}
.page-home .ph-faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent-green);
}
.page-home .ph-faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}
.page-home .ph-faq__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-home .ph-faq__aside {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(168, 176, 192, 0.12);
  padding-bottom: 22px;
}
.page-home .ph-faq__aside img {
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}
.page-home .ph-faq__aside p {
  margin: 0 0 14px;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}
.page-home .ph-faq__aside .badge {
  margin-left: 20px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .page-home .ph-hero__grid {
    grid-template-columns: 1fr;
  }
  .page-home .ph-hero__intro {
    min-height: 0;
  }
  .page-home .ph-hero__bg {
    position: absolute;
    inset: 0;
  }
  .page-home .ph-services__grid {
    grid-template-columns: 1fr;
  }
  .page-home .ph-servicecard--feature {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .page-home .ph-servicecard__media {
    min-height: 220px;
  }
  .page-home .ph-coverage__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-home .ph-story__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-home .ph-faq__grid {
    grid-template-columns: 1fr;
  }
  .page-home .ph-update-item {
    grid-template-columns: 68px 1fr;
  }
  .page-home .ph-update-item__badge {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-home .ph-hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 72px;
  }
  .page-home .ph-hero__content {
    padding: 28px 18px 20px;
  }
  .page-home .ph-hero__title {
    font-size: clamp(36px, 10vw, 46px);
  }
  .page-home .ph-hero__stats {
    gap: 18px;
    flex-wrap: wrap;
  }
  .page-home .ph-hero__index {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .page-home .ph-dashboard {
    padding: 16px;
  }
  .page-home .ph-dashboard__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .ph-dashboard__matches {
    grid-template-columns: 1fr;
  }
  .page-home .ph-blockhead {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-home .ph-services {
    padding: 72px 0;
  }
  .page-home .ph-servicecard__body {
    padding: 22px;
  }
  .page-home .ph-coverage {
    padding: 72px 0;
  }
  .page-home .ph-coverage__stats {
    gap: 20px;
  }
  .page-home .ph-story {
    padding: 72px 0;
  }
  .page-home .ph-updates {
    padding: 72px 0;
  }
  .page-home .ph-update-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 20px;
  }
  .page-home .ph-update-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 15px;
  }
  .page-home .ph-faq {
    padding: 72px 0;
  }
  .page-home .ph-faq__aside {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
