/* ===== 平博首页专属 ===== */
.page-home {
  background: var(--c-bg);
  color: var(--c-ink);
  overflow-x: hidden;
  font-family: var(--font-body);
}

.page-home h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.page-home .eyebrow {
  color: var(--c-accent);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 1.6;
}

/* ---- Hero 新版首发 ---- */
.page-home .ph-hero {
  position: relative;
  padding: 28px 20px 40px;
  background:
    radial-gradient(circle at 88% 8%, rgba(212, 175, 55, 0.14), transparent 30%),
    var(--c-bg);
  overflow: hidden;
}

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

.page-home .ph-hero__content {
  position: relative;
  z-index: 2;
}

.page-home .ph-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 9vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 8px 0 20px;
  color: var(--c-ink);
}

.page-home .ph-hero__lead {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--c-ink-soft);
  border-left: 3px solid var(--c-accent);
  padding-left: 16px;
  max-width: 34em;
  margin: 0 0 26px;
}

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

.page-home .ph-hero__media {
  margin: 0 -20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
  overflow: hidden;
  background: var(--c-navy);
  position: relative;
}

.page-home .ph-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 68, 0.08), rgba(10, 31, 68, 0.55));
  pointer-events: none;
}

.page-home .ph-hero__media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.page-home .ph-hero__index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
  margin-top: 28px;
}

.page-home .ph-hero__index-item {
  background: var(--c-card);
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: var(--c-ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.page-home .ph-hero__index-item:hover,
.page-home .ph-hero__index-item:focus-visible {
  background: var(--c-navy);
  color: var(--c-gold);
}

.page-home .ph-hero__index-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--c-accent);
}

.page-home .ph-hero__index-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---- 赛事查询 ---- */
.page-home .ph-query {
  padding: 56px 20px 64px;
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 31, 68, 0.05), transparent 38%),
    var(--c-bg);
}

.page-home .ph-query__copy h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 12px;
}

.page-home .ph-query__copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-ink-soft);
  max-width: 36em;
  margin-bottom: 28px;
}

.page-home .ph-query__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.page-home .ph-query__stat {
  background: var(--c-card);
  border-top: 3px solid var(--c-navy);
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(45, 40, 36, 0.06);
}

.page-home .ph-query__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-navy);
  display: block;
}

.page-home .ph-query__plus {
  color: var(--c-accent);
  font-size: 0.7em;
}

.page-home .ph-query__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  margin-top: 8px;
  display: block;
  letter-spacing: 0.04em;
}

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

.page-home .ph-query__text h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 10px;
}

.page-home .ph-query__text p {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--c-ink-soft);
  margin: 0 0 20px;
}

.page-home .ph-query__media {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 4% 100%);
  overflow: hidden;
  background: var(--c-line);
}

.page-home .ph-query__media img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.page-home .ph-query__media:hover img {
  transform: scale(1.03);
}

.page-home .ph-query__media,
.page-home .ph-query__media img {
  max-width: 100%;
}

/* ---- 阵容确认 ---- */
.page-home .ph-lineup {
  padding: 56px 20px;
  background: var(--c-navy);
  color: rgba(247, 241, 232, 0.82);
  position: relative;
  overflow: hidden;
}

.page-home .ph-lineup::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 36px solid rgba(212, 175, 55, 0.07);
  border-radius: 50%;
  top: -130px;
  right: -100px;
  pointer-events: none;
}

.page-home .ph-lineup__head {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}

.page-home .ph-lineup__head .eyebrow {
  color: var(--c-gold);
}

.page-home .ph-lineup__head h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 12px;
}

.page-home .ph-lineup__head > p {
  line-height: 1.8;
  margin: 0;
  max-width: 30em;
}

.page-home .ph-lineup__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.page-home .ph-lineup__step {
  background: rgba(247, 241, 232, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 24px 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .ph-lineup__step:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.55);
}

.page-home .ph-lineup__step-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  color: var(--c-gold);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.page-home .ph-lineup__step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 600;
}

.page-home .ph-lineup__step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(247, 241, 232, 0.75);
  margin: 0;
}

.page-home .ph-lineup__cta {
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}

/* ---- 中国区栏目 ---- */
.page-home .ph-china {
  padding: 56px 20px 64px;
}

.page-home .ph-china__copy {
  margin-bottom: 32px;
}

.page-home .ph-china__copy h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 12px;
}

.page-home .ph-china__copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-ink-soft);
  max-width: 38em;
}

.page-home .ph-china__entries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .ph-china__entry {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--c-card);
  border-left: 4px solid var(--c-gold);
  box-shadow: 0 3px 12px rgba(45, 40, 36, 0.05);
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .ph-china__entry:hover,
.page-home .ph-china__entry:focus-visible {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(10, 31, 68, 0.12);
}

.page-home .ph-china__entry-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--c-accent);
}

.page-home .ph-china__entry-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.page-home .ph-china__entry-desc {
  margin-left: auto;
  text-align: right;
  font-size: 0.75rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.page-home .ph-china__media {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(45, 40, 36, 0.12);
}

.page-home .ph-china__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---- 最新动态 ---- */
.page-home .ph-news {
  padding: 56px 20px 64px;
  background: var(--c-dark);
  color: rgba(247, 241, 232, 0.88);
}

.page-home .ph-news .eyebrow {
  color: var(--c-gold);
}

.page-home .ph-news__head h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 28px;
}

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

.page-home .ph-news__item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247, 241, 232, 0.14);
}

.page-home .ph-news__tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  white-space: nowrap;
  height: fit-content;
  line-height: 1.4;
}

.page-home .ph-news__item a {
  color: rgba(247, 241, 232, 0.9);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.65;
  transition: color 0.3s var(--ease);
}

.page-home .ph-news__item a:hover {
  color: var(--c-gold);
}

.page-home a.ph-news__more {
  border-color: rgba(247, 241, 232, 0.45);
  color: rgba(247, 241, 232, 0.9);
}

/* ---- 桌面行动区 ---- */
.page-home .ph-desktop {
  padding: 56px 20px 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1), transparent 30%),
    var(--c-bg);
}

.page-home .ph-desktop__media {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 5% 100%);
  overflow: hidden;
  background: var(--c-line);
}

.page-home .ph-desktop__media img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-home .ph-desktop__copy h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 12px;
}

.page-home .ph-desktop__copy p {
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-bottom: 22px;
}

/* ===== 响应式 ===== */
@media (min-width: 768px) {
  .page-home .ph-hero {
    padding: 40px 28px 48px;
  }

  .page-home .ph-hero__media {
    margin: 0 -28px;
  }

  .page-home .ph-hero__media img {
    height: 320px;
  }

  .page-home .ph-hero__index {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .ph-query,
  .page-home .ph-lineup,
  .page-home .ph-china,
  .page-home .ph-news,
  .page-home .ph-desktop {
    padding-left: 32px;
    padding-right: 32px;
  }

  .page-home .ph-query__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-home .ph-query__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
  }

  .page-home .ph-query__media img,
  .page-home .ph-desktop__media img {
    height: 280px;
  }

  .page-home .ph-lineup__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .ph-china__entries {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .page-home .ph-news__list {
    max-width: 780px;
  }
}

@media (min-width: 1100px) {
  .page-home .ph-hero {
    padding: 48px 40px 56px;
  }

  .page-home .ph-hero__grid {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 44px;
    align-items: center;
  }

  .page-home .ph-hero__content {
    grid-column: 1;
    grid-row: 1;
  }

  .page-home .ph-hero__media {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: stretch;
  }

  .page-home .ph-hero__media img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  .page-home .ph-hero__index {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 36px;
  }

  .page-home .ph-hero h1 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
  }

  .page-home .ph-query,
  .page-home .ph-lineup,
  .page-home .ph-china,
  .page-home .ph-news,
  .page-home .ph-desktop {
    padding-left: 48px;
    padding-right: 48px;
  }

  .page-home .ph-china {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
  }

  .page-home .ph-china__copy {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .page-home .ph-china__entries {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
  }

  .page-home .ph-china__media {
    grid-column: 1 / -1;
    max-width: 820px;
  }

  .page-home .ph-china__media img {
    height: 260px;
  }
}
