/* ========== 页面专属样式：.page-home ========== */
.page-home {
  --home-max: 1440px;
  background: #F8FAFC;
  color: #0B1120;
  font-family: var(--sk-body);
  overflow-x: hidden;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home a {
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.page-home a:focus-visible {
  outline: 2px solid var(--sk-accent, #FF5A1F);
  outline-offset: 3px;
}

/* ---------- 按钮系统 ---------- */
.page-home .ph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.page-home .ph-btn-accent {
  background: linear-gradient(135deg, #FF5A1F 0%, #FFB347 100%);
  color: #0A1A2F;
  box-shadow: 0 8px 20px rgba(255, 90, 31, 0.25);
}

.page-home .ph-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 90, 31, 0.32);
}

.page-home .ph-btn-ghost {
  border-color: rgba(248, 250, 252, 0.4);
  color: #F8FAFC;
  background: rgba(248, 250, 252, 0.08);
}

.page-home .ph-btn-ghost:hover {
  background: rgba(248, 250, 252, 0.16);
  border-color: rgba(248, 250, 252, 0.7);
}

.page-home .ph-btn-outline {
  border-color: #1E3A5F;
  color: #1E3A5F;
  background: transparent;
}

.page-home .ph-btn-outline:hover {
  background: rgba(30, 58, 95, 0.08);
  border-color: #0A1A2F;
}

/* ---------- 首屏 Hero ---------- */
.page-home .ph-hero {
  position: relative;
  overflow: hidden;
  background: var(--sk-blue-gradient);
  color: #F8FAFC;
  padding: 48px 0 132px;
}

.page-home .ph-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.page-home .ph-hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 520px at 78% -10%, rgba(255, 90, 31, 0.2), transparent 60%),
    radial-gradient(900px 420px at 8% 112%, rgba(59, 130, 246, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(10, 26, 47, 0.5) 0%, rgba(10, 26, 47, 0.12) 42%, rgba(10, 26, 47, 0.8) 100%);
}

.page-home .ph-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .ph-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.72);
}

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

.page-home .ph-eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFB347;
}

.page-home .ph-hero-title {
  margin: 0 0 22px;
  max-width: 720px;
  font-family: var(--sk-serif), Georgia, serif;
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #F8FAFC;
}

.page-home .ph-hero-lead {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(248, 250, 252, 0.84);
}

.page-home .ph-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* 入口状态卡片 */
.page-home .ph-entry-card {
  align-self: start;
  background: rgba(248, 250, 252, 0.1);
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 20px;
  padding: 26px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(4, 10, 20, 0.35);
}

.page-home .ph-entry-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.62);
}

.page-home .ph-entry-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 8px;
}

.page-home .ph-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.page-home .ph-entry-status strong {
  color: #F8FAFC;
  font-size: 14px;
}

.page-home .ph-entry-title {
  margin: 8px 0 16px;
  font-size: 24px;
  font-family: var(--sk-serif), Georgia, serif;
  color: #F8FAFC;
}

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

.page-home .ph-entry-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(248, 250, 252, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

.page-home .ph-entry-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFB347;
  font-weight: 700;
}

.page-home .ph-entry-note {
  margin: 0;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.55);
}

.page-home .ph-entry-back {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(248, 250, 252, 0.22);
}

.page-home .ph-entry-back .sk-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(248, 250, 252, 0.6);
}

.page-home .ph-entry-back p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.7);
}

/* 数据流与底部曲线切面 */
.page-home .ph-pulse {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-top: 1px solid rgba(248, 250, 252, 0.12);
  background: rgba(10, 26, 47, 0.38);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-home .ph-pulse .sk-pulse-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.7);
  white-space: nowrap;
}

.page-home .ph-pulse .sk-pulse-track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  position: relative;
  overflow: hidden;
}

.page-home .ph-pulse .sk-pulse-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3B82F6, #FF5A1F, #3B82F6);
  background-size: 200% 100%;
  animation: ph-stream 2.4s linear infinite;
}

@keyframes ph-stream {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.page-home .ph-wire {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  width: 100%;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.page-home .ph-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 28px;
  z-index: 5;
  pointer-events: none;
  display: block;
}

/* ---------- 01 / 官方入口与直连状态 ---------- */
.page-home .ph-entry-section {
  background: #F8FAFC;
  padding: 76px 0;
}

.page-home .ph-entry-wrap {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .ph-section-caption {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .ph-caption-eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #FF5A1F;
  text-transform: uppercase;
}

.page-home .ph-section-note {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #64748B;
}

.page-home .ph-section-body {
  min-width: 0;
}

.page-home .ph-section-title {
  margin: 0 0 16px;
  max-width: 780px;
  font-family: var(--sk-serif), Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.page-home .ph-title-dark {
  color: #0A1A2F;
}

.page-home .ph-section-lead {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.page-home .ph-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.page-home .ph-metric {
  padding: 18px 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-left: 3px solid #FF5A1F;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(10, 26, 47, 0.05);
}

.page-home .ph-metric-num {
  display: block;
  font-family: var(--sk-serif), Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  color: #0A1A2F;
}

.page-home .ph-metric-num span {
  margin-left: 2px;
  color: #FF5A1F;
  font-size: 0.5em;
}

.page-home .ph-metric-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #475569;
}

/* ---------- 02 / 赛事版块三档导航 ---------- */
.page-home .ph-category-section {
  background: linear-gradient(180deg, #EEF2F6 0%, #F8FAFC 100%);
  padding: 76px 0;
}

.page-home .ph-category-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .ph-category-caption {
  padding-top: 8px;
}

.page-home .ph-category-wrap {
  min-width: 0;
}

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

.page-home .ph-category-figure {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #0A1A2F;
  box-shadow: 0 14px 34px rgba(10, 26, 47, 0.18);
}

.page-home .ph-category-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 47, 0.4), transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.page-home .ph-category-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .ph-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(10, 26, 47, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #F8FAFC;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}

.page-home .ph-category-figure figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.92);
}

.page-home .ph-category-list {
  min-width: 0;
}

.page-home .ph-category-items {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.page-home .ph-category-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(10, 26, 47, 0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-home .ph-category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 26, 47, 0.1);
  border-color: #FFB347;
}

.page-home .ph-item-index {
  font-family: var(--sk-serif), Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #FF5A1F;
}

.page-home .ph-category-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0A1A2F;
}

.page-home .ph-category-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
}

.page-home .ph-category-cta {
  margin-top: 6px;
}

/* ---------- 03 / 回访唤醒与提醒 ---------- */
.page-home .ph-remind-section {
  background: linear-gradient(135deg, #0A1A2F 0%, #1E3A5F 55%, #0A1A2F 100%);
  padding: 80px 0;
}

.page-home .ph-remind-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .ph-eyebrow-ice {
  color: rgba(248, 250, 252, 0.7);
}

.page-home .ph-title-ice {
  color: #F8FAFC;
}

.page-home .ph-lead-ice {
  color: rgba(248, 250, 252, 0.76);
}

.page-home .ph-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 32px;
  display: grid;
  gap: 16px;
}

.page-home .ph-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .ph-step-num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.18);
  border: 1px solid rgba(255, 90, 31, 0.5);
  color: #FFB347;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.page-home .ph-steps p {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.82);
}

.page-home .ph-steps strong {
  color: #F8FAFC;
}

.page-home .ph-remind-figure {
  margin: 0;
}

.page-home .ph-remind-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(4, 10, 20, 0.45);
}

.page-home .ph-remind-figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.55);
}

/* ---------- 04 / 赛后复盘数据台 ---------- */
.page-home .ph-replay-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.page-home .ph-replay-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .ph-replay-copy {
  min-width: 0;
}

.page-home .ph-replay-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 12px;
}

.page-home .ph-replay-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
}

.page-home .ph-replay-list li::before {
  content: "▸";
  font-weight: 700;
  color: #FF5A1F;
}

.page-home .ph-replay-figure {
  margin: 0;
}

.page-home .ph-replay-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(10, 26, 47, 0.14);
}

.page-home .ph-replay-figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #64748B;
}

/* ---------- 05 / 实时热门赛事 ---------- */
.page-home .ph-hot-section {
  background: #EEF2F6;
  padding: 80px 0;
}

.page-home .ph-hot-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .ph-hot-head {
  margin-bottom: 30px;
}

.page-home .ph-section-live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #FF5A1F;
}

.page-home .ph-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF5A1F;
  box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.18);
}

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

.page-home .ph-hot-card {
  padding: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(10, 26, 47, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-home .ph-hot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10, 26, 47, 0.12);
  border-color: rgba(255, 90, 31, 0.4);
}

.page-home .ph-hot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .ph-hot-meta .sk-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #64748B;
}

.page-home .ph-hot-status {
  font-size: 12px;
  font-weight: 700;
  color: #FF5A1F;
  background: rgba(255, 90, 31, 0.12);
  border-radius: 999px;
  padding: 5px 12px;
}

.page-home .ph-hot-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-family: var(--sk-serif), Georgia, serif;
  font-weight: 800;
  color: #0A1A2F;
}

.page-home .ph-hot-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
}

.page-home .ph-hot-cta {
  display: inline-flex;
}

/* ---------- 底部行动区 ---------- */
.page-home .ph-closing-section {
  background: #F8FAFC;
  padding: 24px 0 88px;
}

.page-home .ph-closing-inner {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 20px;
}

.page-home .ph-closing-title {
  margin: 0 0 28px;
  max-width: 880px;
  font-family: var(--sk-serif), Georgia, serif;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.28;
  color: #0A1A2F;
}

.page-home .ph-closing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 24px;
}

.page-home .ph-closing-links a {
  font-size: 16px;
  font-weight: 700;
  color: #FF5A1F;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 90, 31, 0.25);
  padding-bottom: 2px;
}

.page-home .ph-closing-links a:hover {
  border-color: #FF5A1F;
}

.page-home .ph-closing-touch {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #64748B;
}

/* ---------- 桌面端布局与栅格 ---------- */
@media (min-width: 860px) {
  .page-home .ph-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

  .page-home .ph-hot-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .page-home .ph-category-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
  }
}

@media (min-width: 980px) {
  .page-home .ph-hero {
    padding: 72px 0 176px;
  }

  .page-home .ph-hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 56px;
    align-items: start;
  }

  .page-home .ph-entry-wrap,
  .page-home .ph-category-inner {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 56px;
    padding: 0 28px;
  }

  .page-home .ph-remind-inner,
  .page-home .ph-replay-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    padding: 0 28px;
  }

  .page-home .ph-hot-inner,
  .page-home .ph-closing-inner {
    padding: 0 28px;
  }

  .page-home .ph-entry-back {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    transition: max-height .4s ease, padding-top .3s ease, margin-top .3s ease, border-color .3s ease;
  }

  .page-home .ph-entry-card:hover .ph-entry-back,
  .page-home .ph-entry-card:focus-within .ph-entry-back {
    max-height: 240px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed rgba(248, 250, 252, 0.22);
  }

  .page-home .ph-divider {
    height: 40px;
  }
}

@media (min-width: 1200px) {
  .page-home .ph-remind-inner,
  .page-home .ph-replay-inner {
    gap: 80px;
  }
}

/* ---------- 减少动态效果 ---------- */
@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;
  }
}
