.page-home {
  --primary: #FF4D00;
  --primary-dark: #CC3B00;
  --deep-blue: #0B1B3F;
  --gold: #F5C518;
  --wine: #8B1E3F;
  --indigo: #3E2A8C;
  --teal: #1F6F5C;
  --light-text: #F2F4F8;
  --light-bg: #E8ECF1;
  --warning: #FF8C00;
  --body-font: 'Noto Sans SC', 'Helvetica Neue', Arial, sans-serif;
  --heading-font: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
  --mono-font: 'Roboto Mono', monospace;
  --space-1: 0.5rem;
  --space-2: 0.875rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3.5rem;
  --space-6: 5rem;
  --content-max: 1360px;
  --radius-btn: 6px;
  --radius-card: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

.page-home {
  --home-accent: #FF4D00;
  --home-accent-dark: #CC3B00;
  --home-gold: #F5C518;
  --home-deep: #0B1B3F;
  --home-teal: #1F6F5C;
  --home-wine: #8B1E3F;
  color: var(--light-text);
  font-family: var(--body-font);
  line-height: 1.75;
  background: var(--deep-blue);
}

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

.page-home h1,
.page-home h2,
.page-home h3,
.page-home h5 {
  font-family: var(--heading-font);
  line-height: 1.2;
}

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

/* ===== 首屏 ===== */
.page-home .hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 77, 0, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(63, 42, 140, 0.35) 0%, transparent 45%),
    linear-gradient(135deg, #08132f 0%, #0b1b3f 60%, #10254d 100%);
}

.page-home .hero-split__content {
  padding: var(--space-5) var(--space-4);
  position: relative;
  z-index: 2;
}

.page-home .hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--home-gold);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(245, 197, 24, 0.08);
}

.page-home .hero-split__title {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--light-text);
  position: relative;
  display: inline-block;
}

.page-home .hero-split__title-mark {
  font-size: 0.25em;
  font-weight: 700;
  color: var(--home-gold);
  display: block;
  margin-top: var(--space-2);
  letter-spacing: 0.18em;
}

.page-home .hero-split__slogan {
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--home-accent);
  background: linear-gradient(90deg, #FF4D00, #FF8C00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
}

.page-home .hero-split__lead {
  max-width: 34rem;
  font-size: 0.9375rem;
  color: rgba(242, 244, 248, 0.88);
  margin-bottom: var(--space-4);
}

.page-home .hero-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .btn--primary {
  background: var(--home-accent);
  color: #fff;
}

.page-home .btn--primary:hover {
  background: var(--home-accent-dark);
  transform: translateY(-2px);
}

.page-home .btn--ghost {
  background: transparent;
  border: 1px solid rgba(242, 244, 248, 0.5);
  color: var(--light-text);
}

.page-home .btn--ghost:hover {
  border-color: var(--home-gold);
  color: var(--home-gold);
  transform: translateY(-2px);
}

.page-home .btn--gold {
  background: var(--home-gold);
  color: var(--home-deep);
}

.page-home .btn--gold:hover {
  background: #ffd94f;
  transform: translateY(-2px);
}

.page-home .hero-split__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  max-width: 30rem;
  margin: 0;
}

.page-home .hero-split__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: var(--space-2);
  backdrop-filter: blur(8px);
}

.page-home .hero-split__stat dt {
  font-size: 0.6875rem;
  color: rgba(242, 244, 248, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .hero-split__stat dd {
  margin: 0.25rem 0 0;
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--light-text);
}

.page-home .hero-split__visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-home .hero-split__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(1.2) contrast(1.1);
  mask-image: linear-gradient(120deg, transparent 0%, #000 40%, #000 100%);
}

.page-home .hero-cloud {
  position: relative;
  width: 360px;
  height: 360px;
  z-index: 2;
  filter: drop-shadow(0 0 35px rgba(255, 77, 0, 0.2));
}

.page-home .hero-cloud__layer {
  position: absolute;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.page-home .hero-cloud__layer--one {
  width: 320px;
  height: 160px;
  top: 30px;
  left: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-radius: 300px;
  animation: cloudDrift 6s ease-in-out infinite alternate;
}

.page-home .hero-cloud__layer--two {
  width: 240px;
  height: 140px;
  top: 110px;
  left: 60px;
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.25), rgba(255, 77, 0, 0.05));
  border-radius: 260px;
  animation: cloudDrift 5s ease-in-out infinite alternate-reverse;
}

.page-home .hero-cloud__layer--three {
  width: 180px;
  height: 100px;
  top: 190px;
  left: 100px;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.2), rgba(245, 197, 24, 0.03));
  border-radius: 200px;
  animation: cloudDrift 7s ease-in-out infinite alternate;
}

.page-home .hero-cloud__core {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: 120px;
  left: 135px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.9), rgba(204, 59, 0, 0.4));
  box-shadow: 0 0 60px rgba(255, 77, 0, 0.5);
  z-index: 2;
}

.page-home .hero-cloud__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(242, 244, 248, 0.3);
  z-index: 1;
}

.page-home .hero-cloud__orbit--a {
  width: 300px;
  height: 300px;
  top: 30px;
  left: 30px;
  animation: rotate 30s linear infinite;
}

.page-home .hero-cloud__orbit--b {
  width: 180px;
  height: 180px;
  top: 90px;
  left: 90px;
  border-style: solid;
  border-color: rgba(255, 77, 0, 0.3);
  animation: rotate 20s linear infinite reverse;
}

.page-home .hero-cloud__bar {
  position: absolute;
  width: 150px;
  height: 10px;
  background: linear-gradient(90deg, var(--home-accent), var(--home-gold));
  border-radius: 999px;
  top: 150px;
  left: 105px;
  transform: rotate(-15deg);
  z-index: 3;
  box-shadow: 0 0 24px rgba(255, 77, 0, 0.6);
  animation: barGlow 2s ease-in-out infinite;
}

.page-home .hero-cloud__bar--short {
  width: 90px;
  top: 185px;
  left: 135px;
  animation-delay: 0.6s;
}

.page-home .hero-split__chip {
  position: absolute;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.page-home .hero-split__chip--calendar {
  bottom: 80px;
  right: 20px;
  background: rgba(11, 27, 63, 0.7);
  border: 1px solid rgba(255, 77, 0, 0.5);
  color: #fff;
}

.page-home .hero-split__chip--gold {
  bottom: 45px;
  right: 70px;
  background: rgba(245, 197, 24, 0.15);
  border: 1px solid rgba(245, 197, 24, 0.5);
  color: var(--home-gold);
}

@keyframes cloudDrift {
  0% { transform: translateX(0px) scale(1); }
  100% { transform: translateX(25px) scale(1.05); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes barGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 77, 0, 0.4); }
  50% { box-shadow: 0 0 50px rgba(255, 77, 0, 0.85); }
}

/* ===== 赛程总表 ===== */
.page-home .schedule-section {
  padding: var(--space-5) var(--space-4);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(62, 42, 140, 0.25) 0%, transparent 40%),
    linear-gradient(180deg, #0b1b3f 0%, #0e2249 100%);
}

.page-home .section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.page-home .section-subtitle {
  font-size: 0.75rem;
  font-family: var(--mono-font);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--home-accent);
  margin: 0 0 var(--space-1);
}

.page-home .section-title {
  font-size: clamp(1.875rem, 5vw, 3.125rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0;
}

.page-home .section-title--italic {
  font-style: italic;
  position: relative;
  display: inline-block;
}

.page-home .section-title--italic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.08em;
  width: 35%;
  height: 0.65em;
  background: rgba(255, 77, 0, 0.3);
  z-index: -1;
  border-radius: 0 8px 0 8px;
}

.page-home .schedule-section__desc {
  color: rgba(242, 244, 248, 0.7);
  font-size: 0.9375rem;
  max-width: 30rem;
  margin: 0;
}

.page-home .schedule-layout {
  position: relative;
}

.page-home .schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
}

.page-home .schedule-tabs__tab {
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(242, 244, 248, 0.2);
  border-radius: 999px;
  background: transparent;
  color: rgba(242, 244, 248, 0.75);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.page-home .schedule-tabs__tab:hover {
  border-color: var(--home-accent);
  color: var(--home-accent);
}

.page-home .schedule-tabs__tab.is-active {
  background: var(--home-accent);
  border-color: var(--home-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.35);
}

.page-home .schedule-board {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.page-home .schedule-panel {
  display: none;
  padding: var(--space-3);
  animation: panelFade 0.25s ease;
}

.page-home .schedule-panel.is-active {
  display: block;
}

@keyframes panelFade {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: none; }
}

.page-home .schedule-panel__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.page-home .schedule-panel__league {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.page-home .schedule-panel__code {
  font-family: var(--mono-font);
  font-size: 0.875rem;
  color: var(--home-gold);
  letter-spacing: 0.08em;
}

.page-home .schedule-panel__name {
  font-weight: 700;
}

.page-home .schedule-panel__status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.75rem;
  color: rgba(242, 244, 248, 0.6);
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-accent);
  display: inline-block;
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.7; }
}

.page-home .schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.page-home .schedule-table th {
  text-align: left;
  padding: 0.6rem 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(242, 244, 248, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .schedule-table td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-home .schedule-table td:last-child {
  color: var(--home-teal);
}

.page-home .schedule-table td:first-child {
  font-family: var(--mono-font);
  color: var(--home-accent);
}

.page-home .schedule-panel__foot {
  margin-top: var(--space-2);
  font-size: 0.8125rem;
  color: var(--home-gold);
  border-left: 3px solid var(--home-gold);
  padding-left: var(--space-2);
}

.page-home .schedule-section__calendar-img {
  margin-top: var(--space-5);
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== 战报大屏 ===== */
.page-home .report-section {
  padding: var(--space-5) var(--space-4);
  background:
    linear-gradient(120deg, rgba(139, 30, 63, 0.2) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 77, 0, 0.1) 0%, transparent 40%),
    #0a1634;
  position: relative;
  overflow: hidden;
}

.page-home .report-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.page-home .report-section--shot {
  background: transparent;
}

.page-home .report-section__left .section-title {
  margin-top: var(--space-2);
}

.page-home .report-section__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  margin: var(--space-3) 0;
  border: 1px solid rgba(255, 77, 0, 0.25);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.page-home .report-section__desc {
  color: rgba(242, 244, 248, 0.75);
  font-size: 0.9375rem;
  max-width: 26rem;
}

.page-home .report-section__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .report-board {
  position: relative;
  width: 100%;
  max-width: 32rem;
  border-radius: 18px;
  padding: var(--space-4);
  background:
    radial-gradient(circle at 90% 90%, rgba(255, 77, 0, 0.15) 0%, transparent 45%),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.page-home .report-board__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  color: rgba(242, 244, 248, 0.7);
  margin-bottom: var(--space-3);
}

.page-home .report-board__live {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--home-accent);
}

.page-home .report-board__teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.page-home .report-board__team {
  text-align: center;
}

.page-home .report-board__team-name {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.page-home .report-board__score {
  font-size: 2.5rem;
  font-family: var(--mono-font);
  font-weight: 800;
  color: var(--home-accent);
}

.page-home .report-board__versus {
  font-size: 0.8125rem;
  color: rgba(242, 244, 248, 0.4);
  letter-spacing: 0.2em;
}

.page-home .report-board__gauges {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.page-home .report-gauge__heading {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.3rem;
}

.page-home .report-gauge__value {
  font-family: var(--mono-font);
  color: var(--home-gold);
}

.page-home .report-gauge__track {
  height: 7px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  display: flex;
}

.page-home .report-gauge__bar {
  height: 100%;
  border-radius: 999px;
  transition: width 0.55s var(--ease);
}

.page-home .report-gauge__bar--home {
  background: linear-gradient(90deg, var(--home-accent), #ff8c00);
}

.page-home .report-gauge__bar--away {
  background: linear-gradient(90deg, var(--home-teal), #37b995);
}

.page-home .report-board__trajectory {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
}

.page-home .report-board__trajectory-line {
  position: absolute;
  width: 85%;
  height: 2px;
  top: 30%;
  left: -5%;
  background: linear-gradient(90deg, transparent, var(--home-accent), var(--home-gold), transparent);
  transform: rotate(-18deg);
}

.page-home .report-board__trajectory-dot {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-gold);
}

.page-home .report-section__link {
  margin-top: var(--space-2);
  font-size: 0.875rem;
}

.page-home .section-subtitle--orange {
  color: var(--home-accent);
}

/* ===== 资料库 ===== */
.page-home .library-section {
  padding: var(--space-5) var(--space-4);
  background:
    linear-gradient(200deg, rgba(62, 42, 140, 0.2) 0%, transparent 40%),
    #0d1a3a;
  position: relative;
}

.page-home .library-section__heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.page-home .library-section__desc {
  color: rgba(242, 244, 248, 0.7);
  max-width: 30rem;
}

.page-home .library-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.page-home .library-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.page-home .library-card:hover {
  border-color: rgba(255, 77, 0, 0.4);
  transform: translateY(-4px);
}

.page-home .library-card--featured {
  border-color: rgba(255, 77, 0, 0.5);
  background:
    linear-gradient(150deg, rgba(255, 77, 0, 0.12) 0%, transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.page-home .library-card__tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  font-size: 0.6875rem;
  color: var(--home-gold);
  border: 1px solid rgba(245, 197, 24, 0.4);
  border-radius: 999px;
  margin-bottom: var(--space-2);
  letter-spacing: 0.08em;
}

.page-home .library-card__title {
  font-size: 1.375rem;
  margin: 0 0 0.25rem;
}

.page-home .library-card__meta {
  font-size: 0.75rem;
  color: rgba(242, 244, 248, 0.5);
  margin-bottom: var(--space-2);
}

.page-home .library-card__list {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-3);
  font-size: 0.875rem;
}

.page-home .library-card__list li {
  margin-bottom: 0.3rem;
}

.page-home .library-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: var(--space-2);
}

.page-home .library-card__fav {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--home-gold);
}

.page-home .library-card__fav-icon {
  color: var(--home-gold);
  transition: transform 0.3s var(--ease);
}

.page-home .library-card__link {
  color: var(--home-accent);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
}

.page-home .library-section__backdrop {
  display: none;
}

/* ===== 第23期 ===== */
.page-home .stamp-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-5) var(--space-4);
  text-align: center;
  background: #060e23;
}

.page-home .stamp-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.6) contrast(1.1);
}

.page-home .stamp-section__inner {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 0 auto;
}

.page-home .stamp-section__period {
  font-family: var(--mono-font);
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  color: rgba(242, 244, 248, 0.6);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.page-home .stamp-section__title {
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin: 0 0 var(--space-3);
  background: linear-gradient(135deg, #ff4d00 0%, #ff8c00 30%, #f5c518 70%, #ff4d00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.page-home .stamp-section__title::before {
  content: '';
  position: absolute;
  inset: auto -15% -8%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--home-accent), var(--home-gold), transparent);
  border-radius: 999px;
  animation: underlineFlare 3s ease-in-out infinite;
}

@keyframes underlineFlare {
  0%, 100% { opacity: 0.4; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

.page-home .stamp-section__desc {
  color: rgba(242, 244, 248, 0.85);
  max-width: 30rem;
  margin: 0 auto var(--space-4);
  font-size: 0.9375rem;
}

.page-home .stamp-section__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: 0.8125rem;
  color: rgba(242, 244, 248, 0.65);
}

.page-home .stamp-section__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.page-home .stamp-section__meta span + span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--home-accent);
}

.page-home .stamp-section__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

/* ===== 移动端 320-480 优化 ===== */
@media (max-width: 480px) {
  .page-home .hero-split__stats {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }

  .page-home .schedule-tabs__tab {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  .page-home .schedule-panel__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .report-board__teams {
    gap: var(--space-3);
  }

  .page-home .report-board__score {
    font-size: 1.875rem;
  }
}

/* ===== 桌面端 ===== */
@media (min-width: 768px) {
  .page-home .hero-split {
    grid-template-columns: 1.1fr 1fr;
    min-height: 90vh;
  }

  .page-home .hero-split__content {
    padding: var(--space-5) var(--space-4) var(--space-5) clamp(1.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .page-home .hero-split__visual {
    min-height: 90vh;
  }

  .page-home .hero-split__img {
    opacity: 0.5;
  }

  .page-home .schedule-section {
    padding: var(--space-6) clamp(1.5rem, 4vw, 4rem);
  }

  .page-home .section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page-home .schedule-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-4);
    align-items: start;
  }

  .page-home .schedule-tabs {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
  }

  .page-home .schedule-tabs__tab {
    text-align: left;
    border-radius: var(--radius-card);
  }

  .page-home .schedule-board {
    min-width: 0;
  }

  .page-home .schedule-section__calendar-img {
    margin-top: 0;
    width: 100%;
    max-width: 340px;
    max-height: 310px;
    align-self: center;
  }

  .page-home .report-section {
    padding: var(--space-6) clamp(1.5rem, 4vw, 4rem);
  }

  .page-home .report-section__grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .page-home .library-section {
    padding: var(--space-6) clamp(1.5rem, 4vw, 4rem);
  }

  .page-home .library-layout {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: var(--space-4);
  }

  .page-home .library-section__backdrop {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 200px;
    opacity: 0.15;
    overflow: hidden;
  }

  .page-home .library-section__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-home .stamp-section {
    min-height: 70vh;
    padding: var(--space-6) clamp(1.5rem, 4vw, 4rem);
  }
}

@media (min-width: 1200px) {
  .page-home .schedule-section,
  .page-home .report-section,
  .page-home .library-section {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .page-home .hero-split__content {
    padding-left: 5vw;
  }

  .page-home .schedule-table td,
  .page-home .schedule-table th {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
