.page-home {
  --home-red: #D4001D;
  --home-red-dark: #8B0000;
  --home-silver: #C0C0C0;
  --home-gray: #2B2B2B;
  --home-black: #1A1A1A;
  --home-neon: #39FF14;
  --home-cream: #F5F5F0;
  --home-white: #FFFFFF;
  --home-font-display: Impact, "Arial Narrow", "DIN Condensed", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "Roboto Mono", Consolas, Menlo, "Courier New", monospace;
  --home-font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  background: var(--home-black);
  color: var(--home-cream);
  overflow-x: hidden;
  font-family: var(--home-font-body);
}

.page-home .breadcrumb {
  margin-bottom: 18px;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--home-silver);
}

.page-home .breadcrumb a {
  color: var(--home-silver);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 192, 192, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .breadcrumb a:hover {
  color: var(--home-white);
  border-color: var(--home-white);
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--home-neon);
}

.page-home .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-neon);
  margin: 0 0 10px;
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  padding: 48px 0 72px;
  background: linear-gradient(135deg, var(--home-red-dark) 0%, var(--home-black) 62%, #14201a 100%);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 0, 29, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-home .home-hero__copy {
  max-width: 640px;
}

.page-home .home-hero h1 {
  font-family: var(--home-font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--home-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #E8E8E0;
  margin: 0 0 16px;
}

.page-home .home-hero__note {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--home-silver);
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--home-neon);
  padding: 12px 16px;
  margin: 0 0 24px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .home-hero__trust {
  font-size: 0.78rem;
  color: rgba(240, 240, 240, 0.55);
  margin: 0;
  letter-spacing: 0.04em;
}

.page-home .home-hero__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .hero-pitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.page-home .hero-calendar {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(150deg, rgba(26, 26, 26, 0.9), rgba(43, 43, 43, 0.82));
  border: 1px solid rgba(192, 192, 192, 0.28);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  margin: 0 auto;
  transform: rotate(-0.8deg);
  transition: transform 0.3s ease;
}

.page-home .hero-calendar:hover {
  transform: rotate(0deg);
}

.page-home .hero-calendar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.page-home .hero-calendar__month {
  font-family: var(--home-font-display);
  font-size: 1.2rem;
  color: var(--home-white);
  letter-spacing: 0.04em;
}

.page-home .hero-calendar__round {
  font-family: var(--home-font-mono);
  font-size: 0.78rem;
  padding: 4px 10px;
  background: var(--home-red);
  color: var(--home-white);
  border-radius: 4px;
  letter-spacing: 0.06em;
}

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

.page-home .cal-cell {
  display: grid;
  grid-template-columns: 48px 42px 1fr auto;
  grid-template-areas:
    "date venue score result"
    "detail detail detail detail";
  align-items: center;
  gap: 2px 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border-left: 3px solid var(--home-silver);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-home .cal-cell:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--home-neon);
  transform: translateX(4px);
}

.page-home .cal-cell--win {
  border-left-color: var(--home-neon);
}

.page-home .cal-cell--draw {
  border-left-color: var(--home-silver);
}

.page-home .cal-cell--loss {
  border-left-color: var(--home-red);
}

.page-home .cal-cell__date {
  grid-area: date;
  font-family: var(--home-font-mono);
  font-size: 0.82rem;
  color: var(--home-silver);
}

.page-home .cal-cell__venue {
  grid-area: venue;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
}

.page-home .cal-cell__venue--home {
  background: var(--home-red);
  color: var(--home-white);
}

.page-home .cal-cell__venue--away {
  background: transparent;
  color: var(--home-cream);
  border: 1px solid var(--home-silver);
}

.page-home .cal-cell__score {
  grid-area: score;
  font-family: var(--home-font-mono);
  font-size: 1.15rem;
  color: var(--home-white);
  font-weight: 700;
  text-align: center;
}

.page-home .cal-cell__result {
  grid-area: result;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
}

.page-home .cal-cell__result--win {
  background: rgba(57, 255, 20, 0.18);
  color: var(--home-neon);
}

.page-home .cal-cell__result--draw {
  background: rgba(192, 192, 192, 0.16);
  color: var(--home-silver);
}

.page-home .cal-cell__result--loss {
  background: rgba(212, 0, 29, 0.22);
  color: #ff8080;
}

.page-home .cal-cell__detail {
  grid-area: detail;
  font-family: var(--home-font-mono);
  font-size: 0.72rem;
  color: rgba(240, 240, 240, 0.65);
  margin-top: 2px;
}

.page-home .hero-calendar__more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--home-neon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .hero-calendar__more:hover {
  border-color: var(--home-neon);
}

.page-home .home-hero__speedline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background-image: repeating-linear-gradient(
    -75deg,
    rgba(192, 192, 192, 0.12) 0 2px,
    transparent 2px 22px,
    rgba(57, 255, 20, 0.06) 22px 26px,
    transparent 26px 48px
  );
  pointer-events: none;
}

/* ===== 重点场次 ===== */
.page-home .home-matches {
  position: relative;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, var(--home-black) 0%, #111 100%);
  overflow: hidden;
}

.page-home .home-matches__bg {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  z-index: 0;
}

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

.page-home .home-matches > .container {
  position: relative;
  z-index: 1;
}

.page-home .home-matches h2,
.page-home .home-stats h2,
.page-home .home-tv h2,
.page-home .home-review h2,
.page-home .home-cta h2 {
  font-family: var(--home-font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  color: var(--home-white);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-home .home-matches__intro,
.page-home .home-stats__text,
.page-home .home-tv__text,
.page-home .home-review__text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #C8C8C0;
  margin: 0 0 24px;
  max-width: 640px;
}

.page-home .home-matches__track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 24px 24px 28px;
  margin-top: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--home-red) rgba(255, 255, 255, 0.06);
}

.page-home .home-matches__track::-webkit-scrollbar {
  height: 6px;
}

.page-home .home-matches__track::-webkit-scrollbar-thumb {
  background: var(--home-red);
  border-radius: 4px;
}

.page-home .home-matches__track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.page-home .match-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: linear-gradient(160deg, #202020, #151515);
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .match-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.page-home .match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .match-card__league {
  font-family: var(--home-font-mono);
  font-size: 0.78rem;
  color: var(--home-silver);
}

.page-home .match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.page-home .match-card__team {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--home-cream);
  line-height: 1.3;
}

.page-home .match-card__team:last-of-type {
  text-align: right;
}

.page-home .match-card__score {
  font-family: var(--home-font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--home-white);
  background: rgba(212, 0, 29, 0.16);
  padding: 4px 10px;
  border-radius: 6px;
}

.page-home .match-card__stats {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(192, 192, 192, 0.12);
}

.page-home .match-card__stats div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.page-home .match-card__stats dt {
  font-size: 0.72rem;
  color: var(--home-silver);
}

.page-home .match-card__stats dd {
  font-family: var(--home-font-mono);
  font-size: 0.9rem;
  color: var(--home-neon);
  margin: 0;
}

.page-home .match-card__meta {
  font-size: 0.78rem;
  color: rgba(240, 240, 240, 0.55);
  margin: 0;
  font-family: var(--home-font-mono);
}

.page-home .match-card--more {
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  color: var(--home-silver);
  font-weight: 700;
  border-style: dashed;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.02);
}

.page-home .match-card--more:hover {
  color: var(--home-neon);
  border-color: var(--home-neon);
}

/* ===== 数据更新 ===== */
.page-home .home-stats {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(145deg, var(--home-red) 0%, var(--home-red-dark) 45%, var(--home-black) 100%);
  clip-path: polygon(0 0, 100% 32px, 100% calc(100% - 32px), 0 100%);
  margin: -20px 0;
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding: 24px 0;
}

.page-home .home-stats__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.page-home .home-stats__item {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.page-home .home-stats__item:hover {
  border-color: var(--home-neon);
  background: rgba(0, 0, 0, 0.42);
}

.page-home .home-stats__num {
  font-family: var(--home-font-mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--home-white);
  line-height: 1.1;
}

.page-home .home-stats__label {
  font-size: 0.82rem;
  color: rgba(245, 245, 240, 0.72);
  line-height: 1.45;
}

.page-home .home-stats__visual {
  position: relative;
}

.page-home .home-stats__visual img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.3);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  display: block;
}

/* ===== 大屏端 ===== */
.page-home .home-tv {
  padding: 96px 0 72px;
  background: var(--home-black);
  position: relative;
}

.page-home .home-tv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(212, 0, 29, 0.1) 0 20px,
    transparent 20px 40px
  );
  pointer-events: none;
}

.page-home .home-tv__grid,
.page-home .home-review__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .home-tv__visual img,
.page-home .home-review__visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.24);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  display: block;
}

.page-home .feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #D8D8D0;
}

.page-home .feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  background: var(--home-red);
  border: 2px solid var(--home-silver);
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ===== 赛后复查 ===== */
.page-home .home-review {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(160deg, #141414 0%, var(--home-gray) 100%);
  clip-path: polygon(0 32px, 100% 0, 100% 100%, 0 calc(100% - 24px));
  margin: -20px 0;
}

.page-home .review-steps {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.page-home .review-steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 16px 14px 56px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(192, 192, 192, 0.12);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--home-cream);
}

.page-home .review-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--home-font-mono);
  font-size: 1.05rem;
  color: var(--home-neon);
  font-weight: 700;
}

.page-home .review-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== 下载与联系 ===== */
.page-home .home-cta {
  padding: 72px 0 88px;
  background: var(--home-black);
}

.page-home .home-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.page-home .home-cta__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(150deg, #202020, #141414);
  border: 1px solid rgba(192, 192, 192, 0.16);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .home-cta__card:hover {
  border-color: var(--home-neon);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.page-home .home-cta__card--download {
  border-top: 4px solid var(--home-red);
}

.page-home .home-cta__card--contact {
  border-top: 4px solid var(--home-silver);
}

.page-home .home-cta__title {
  font-family: var(--home-font-display);
  font-size: 1.35rem;
  color: var(--home-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-home .home-cta__text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #C8C8C0;
}

.page-home .home-cta__card .btn {
  align-self: flex-start;
  margin-top: 6px;
}

.page-home .home-cta__note {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--home-silver);
}

.page-home .home-cta__note a {
  color: var(--home-neon);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .home-cta__note a:hover {
  border-color: var(--home-neon);
}

/* ===== 桌面端断点 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 60px 0 96px;
  }

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

  .page-home .home-hero__copy {
    padding-right: 8px;
  }

  .page-home .home-hero__visual {
    min-height: 460px;
  }

  .page-home .hero-calendar {
    max-width: 460px;
    padding: 24px;
  }

  .page-home .hero-calendar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .home-matches {
    padding: 88px 0 64px;
  }

  .page-home .home-matches__track {
    padding-left: max(24px, calc((100vw - 1360px) / 2));
    padding-right: max(24px, calc((100vw - 1360px) / 2));
  }

  .page-home .match-card {
    flex-basis: 300px;
  }

  .page-home .home-stats {
    margin: -28px 0;
    padding: 88px 0;
    clip-path: polygon(0 44px, 100% 0, 100% calc(100% - 44px), 0 100%);
  }

  .page-home .home-stats__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
  }

  .page-home .home-stats__numbers {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-home .home-tv__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .home-tv__visual {
    order: 0;
  }

  .page-home .home-review__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .page-home .home-review__copy {
    order: 0;
  }

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

@media (min-width: 1024px) {
  .page-home .home-hero__grid {
    gap: 64px;
  }

  .page-home .home-hero h1 {
    font-size: 3.6rem;
  }

  .page-home .home-hero__lead {
    font-size: 1.12rem;
  }

  .page-home .hero-calendar {
    max-width: 500px;
    padding: 28px;
  }

  .page-home .home-stats__grid {
    gap: 80px;
  }

  .page-home .home-stats__num {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-hero__speedline {
    animation: home-speedline-slide 6s linear infinite;
  }

  @keyframes home-speedline-slide {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 240px 0;
    }
  }

  .page-home .home-matches__bg img {
    animation: home-bg-zoom 18s ease-in-out infinite alternate;
  }

  @keyframes home-bg-zoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.08);
    }
  }
}
