.page-home {
  --home-gutter: 20px;
  --home-card-radius: 10px;
  --home-section-space: 56px;
  background-color: var(--rice-white);
  overflow-x: hidden;
}

.page-home .container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--home-gutter);
}

/* ===== Hero 首屏 ===== */
.page-home .hero-split {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 20%, rgba(0, 180, 160, 0.2) 0%, rgba(0, 180, 160, 0) 46%),
    linear-gradient(135deg, var(--rice-white) 0%, var(--light-cyan) 100%);
  border-bottom: var(--gold-border);
}

.page-home .split-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  padding-block: 40px 52px;
}

.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.page-home .hero-kicker {
  margin: 0;
  padding: 6px 10px 6px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.56);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--blue-gray);
}

.page-home .hero-kicker .tag-label {
  font-weight: 500;
  color: var(--ink-black);
}

.page-home h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(44px, 12vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink-black);
  position: relative;
}

.page-home h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.02em;
  width: 2.1em;
  height: 0.12em;
  background: linear-gradient(90deg, var(--gold), var(--water-green));
  transform: skewX(-18deg);
  z-index: -1;
  pointer-events: none;
}

.page-home .hero-lead {
  margin: 0;
  max-width: 46em;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  background: rgba(248, 246, 240, 0.72);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--blue-gray);
}

.page-home .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 560px;
  margin: 4px 0 0;
  padding: 0;
}

.page-home .hero-metrics div {
  min-width: 0;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 180, 160, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.04);
}

.page-home .hero-metrics dt {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--blue-gray);
}

.page-home .hero-metrics dd {
  margin: 0;
  font-family: var(--font-data);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink-black);
  white-space: nowrap;
}

.page-home .hero-visual {
  position: relative;
  min-height: 400px;
}

.page-home .pitch-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--home-card-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 48px rgba(26, 26, 26, 0.2);
  overflow: hidden;
}

.page-home .pitch-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.02) 0%, rgba(26, 26, 26, 0.5) 100%);
  z-index: 1;
}

.page-home .pitch-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

.page-home .filter-widget {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 14px;
  z-index: 2;
  padding: 14px 12px 10px;
  background: rgba(26, 26, 26, 0.88);
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(26, 26, 26, 0.22);
  transform: rotate(-0.6deg);
}

.page-home .filter-title {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--rice-white);
  letter-spacing: 0.02em;
}

.page-home .filter-sub,
.page-home .filter-note {
  margin: 0 0 10px;
  font-size: 12px;
  color: rgba(248, 246, 240, 0.7);
}

.page-home .filter-note {
  margin: 10px 0 0;
  padding-top: 8px;
  border-top: 1px dashed rgba(212, 175, 55, 0.45);
  font-family: var(--font-data);
}

.page-home .league-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.page-home .league-tabs label {
  padding: 6px 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--rice-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.page-home .league-tabs label:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.page-home #league-football:checked ~ .league-tabs label[for="league-football"],
.page-home #league-basketball:checked ~ .league-tabs label[for="league-basketball"],
.page-home #league-tennis:checked ~ .league-tabs label[for="league-tennis"] {
  background: var(--water-green);
  color: var(--ink-black);
  border-color: var(--water-green);
}

.page-home .league-panels {
  min-height: 150px;
}

.page-home .league-panel {
  display: none;
  animation: home-panel-in 0.22s ease;
}

.page-home #league-football:checked ~ .league-panels [data-league="football"],
.page-home #league-basketball:checked ~ .league-panels [data-league="basketball"],
.page-home #league-tennis:checked ~ .league-panels [data-league="tennis"] {
  display: block;
}

@keyframes home-panel-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-home .match-lineup {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.page-home .match-lineup li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--rice-white);
}

.page-home .match-league {
  grid-column: 1 / -1;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.page-home .match-teams b {
  font-weight: 500;
}

.page-home .match-status {
  color: rgba(248, 246, 240, 0.6);
  font-size: 12px;
  white-space: nowrap;
}

/* ===== 战报流 ===== */
.page-home .report-section {
  position: relative;
  padding-block: var(--home-section-space);
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 42%),
    radial-gradient(80% 60% at 90% 10%, rgba(0, 180, 160, 0.08) 0%, transparent 60%),
    var(--light-gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.page-home .report-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--water-green) 30%, transparent 80%);
}

.page-home .section-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.page-home .section-header h2,
.page-home .feature-copy h2,
.page-home .culture-text h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink-black);
  line-height: 1.1;
}

.page-home .section-sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--blue-gray);
}

.page-home .section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--ink-black);
  background: rgba(255, 255, 255, 0.6);
}

.page-home .report-timeline {
  display: grid;
  gap: 20px;
  position: relative;
  padding-left: 22px;
  margin-top: 34px;
}

.page-home .report-timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--water-green), var(--gold), rgba(212, 175, 55, 0));
}

.page-home .report-timeline::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--water-green);
  box-shadow: 0 0 0 3px rgba(0, 180, 160, 0.2);
}

.page-home .report-card {
  background: var(--rice-white);
  border: 1px solid rgba(61, 90, 108, 0.16);
  border-radius: var(--home-card-radius);
  box-shadow: 0 10px 26px rgba(26, 26, 26, 0.07);
  transition:
    transform var(--transition-slow),
    box-shadow var(--transition-slow);
}

.page-home .report-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.page-home .league-tag {
  background: var(--water-green);
  color: var(--ink-black);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.page-home .report-title {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.page-home .report-status {
  grid-column: 2 / -1;
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--blue-gray);
}

.page-home .report-body {
  padding: 0 16px 16px;
}

.page-home .report-body img {
  width: 100%;
  height: auto;
  margin: 0 0 10px;
  border-radius: 6px;
  object-fit: cover;
}

.page-home .report-body p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-home .match-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px dashed rgba(0, 180, 160, 0.45);
}

.page-home .match-facts div {
  background: var(--light-cyan);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
}

.page-home .match-facts dt {
  display: inline;
  color: var(--blue-gray);
}

.page-home .match-facts dd {
  display: inline;
  margin: 0 0 0 6px;
  font-family: var(--font-data);
  font-weight: 600;
  color: var(--ink-black);
}

.page-home .report-more {
  margin-top: 28px;
  text-align: center;
}

/* ===== 功能亮点 ===== */
.page-home .feature-section {
  padding-block: var(--home-section-space);
  background:
    radial-gradient(90% 80% at 15% 10%, rgba(0, 180, 160, 0.3) 0%, transparent 55%),
    linear-gradient(145deg, var(--ink-black) 0%, var(--indigo) 72%, var(--blue-gray) 140%);
  color: var(--rice-white);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.page-home .feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

.page-home .feature-visual {
  position: relative;
}

.page-home .feature-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--home-card-radius);
  pointer-events: none;
}

.page-home .feature-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.4);
  display: block;
  margin-inline: auto;
}

.page-home .feature-copy .section-index {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

.page-home .feature-copy h2 {
  color: var(--rice-white);
  margin-top: 12px;
}

.page-home .feature-copy h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--gold), var(--water-green));
}

.page-home .feature-lead {
  margin: 20px 0 10px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(248, 246, 240, 0.82);
}

.page-home .feature-list {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .feature-list li {
  position: relative;
  padding-left: 16px;
  border-left: 3px solid var(--water-green);
}

.page-home .feature-list h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--rice-white);
}

.page-home .feature-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248, 246, 240, 0.72);
}

.page-home .feature-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== 文化彩蛋 ===== */
.page-home .culture-section {
  position: relative;
  padding-block: var(--home-section-space);
  background:
    radial-gradient(120% 90% at 20% 100%, rgba(0, 180, 160, 0.22) 0%, transparent 60%),
    linear-gradient(200deg, var(--rice-white) 0%, var(--light-cyan) 48%, var(--rice-white) 100%);
  overflow: hidden;
}

.page-home .culture-section::before {
  content: "运河";
  position: absolute;
  top: 30px;
  right: 6%;
  font-family: var(--font-title);
  font-size: clamp(100px, 18vw, 220px);
  line-height: 1;
  color: rgba(0, 180, 160, 0.07);
  transform: rotate(8deg);
  pointer-events: none;
}

.page-home .culture-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.page-home .culture-art img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--home-card-radius);
  box-shadow: 0 24px 48px rgba(26, 26, 26, 0.16);
  display: block;
}

.page-home .culture-text h2 {
  color: var(--ink-black);
}

.page-home .culture-text h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--water-green), var(--gold));
}

.page-home .culture-text p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--blue-gray);
}

.page-home .culture-facts {
  list-style: none;
  margin: 20px 0 24px;
  padding: 16px;
  background: rgba(0, 180, 160, 0.07);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--blue-gray);
}

.page-home .culture-facts li {
  padding-left: 20px;
  position: relative;
}

.page-home .culture-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--water-green);
  border-radius: 2px;
  transform: rotate(45deg);
}

.page-home .link-ghost {
  display: inline-block;
  font-size: 15px;
  color: var(--water-green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.page-home .link-ghost:hover {
  color: var(--gold);
}

/* ===== 桌面端 ===== */
@media (min-width: 768px) {
  .page-home {
    --home-gutter: clamp(24px, 5vw, 64px);
    --home-section-space: clamp(64px, 9vw, 112px);
  }

  .page-home .split-screen {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(24px, 5vw, 72px);
    padding-block: 60px 86px;
  }

  .page-home .hero-copy {
    gap: 22px;
  }

  .page-home h1 {
    font-size: clamp(54px, 7vw, 84px);
  }

  .page-home .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .page-home .hero-ctas {
    gap: 12px;
  }

  .page-home .hero-metrics {
    gap: 14px;
  }

  .page-home .hero-metrics div {
    padding: 14px 12px;
  }

  .page-home .hero-metrics dt {
    font-size: 12px;
  }

  .page-home .hero-metrics dd {
    font-size: 24px;
  }

  .page-home .hero-visual {
    min-height: clamp(440px, 46vw, 560px);
  }

  .page-home .filter-widget {
    left: 18px;
    right: 18px;
    bottom: 24px;
    padding: 16px 16px 12px;
  }

  .page-home .match-lineup li {
    grid-template-columns: 64px 1fr auto;
  }

  .page-home .match-league {
    grid-column: auto;
  }

  .page-home .report-head {
    grid-template-columns: auto 1fr auto;
  }

  .page-home .report-status {
    grid-column: auto;
  }

  .page-home .report-body img {
    float: left;
    width: 132px;
    margin: 0 16px 10px 0;
  }

  .page-home .report-card:nth-child(odd) {
    transform: rotate(-0.4deg);
  }

  .page-home .report-card:nth-child(even) {
    transform: rotate(0.4deg);
  }

  .page-home .report-card:hover {
    transform: none;
    box-shadow: 0 16px 36px rgba(26, 26, 26, 0.12);
  }
}

@media (min-width: 900px) {
  .page-home .feature-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
  }

  .page-home .feature-visual::after {
    inset: 18px -18px -18px 18px;
  }

  .page-home .feature-visual img {
    max-width: 320px;
  }

  .page-home .culture-wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 6vw, 80px);
  }

  .page-home .culture-art img {
    height: 100%;
    min-height: 320px;
    max-height: 460px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .league-panel {
    animation: none;
  }

  .page-home * {
    transition: none !important;
  }
}
