.page-home {
  --home-edge: 18px;
  --home-edge-lg: 28px;
  --home-c-space: #0B1F3A;
  --home-c-ocean: #142C4C;
  --home-c-ink: #2E2633;
  --home-c-accent: #FF6B35;
  --home-c-gold: #FFD700;
  --home-c-white: #FFFFFF;
  --home-c-mist: #E5E9F0;
  --home-c-ash: #A0AAB5;
  --home-font-head: 'Noto Sans SC','Microsoft YaHei',system-ui,-apple-system,sans-serif;
  --home-font-body: 'Noto Serif SC','Source Han Serif SC','Songti SC','SimSun',serif;
  --home-font-data: 'Roboto Mono','Consolas','SFMono-Regular',monospace;
}

/* ============ 首屏分屏 ============ */
.page-home .home-hero {
  position: relative;
  padding: 64px 20px 56px;
  background-color: var(--home-c-space);
  overflow: hidden;
}

.page-home .home-hero__net {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-kicker {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--home-c-gold);
  border: 1px solid rgba(255, 215, 0, .35);
  border-left-width: 4px;
  border-left-color: var(--home-c-accent);
  margin: 0 0 20px;
  background: rgba(20, 44, 76, .5);
}

.page-home .home-hero__title {
  font-family: var(--home-font-head);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--home-c-white);
  margin: 0 0 12px;
}

.page-home .home-hero__tag {
  font-family: var(--home-font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--home-c-accent);
  letter-spacing: .12em;
  margin: 0 0 20px;
}

.page-home .home-hero__desc {
  font-family: var(--home-font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--home-c-mist);
  max-width: 54ch;
  margin: 0 0 28px;
}

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

.page-home .home-hero__cta {
  position: relative;
  overflow: hidden;
}

.page-home .home-hero__cta.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-20deg);
  animation: home-shine 3s ease-in-out infinite;
}

.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin: 0;
}

.page-home .home-hero__stats .stat {
  min-width: 96px;
}

.page-home .home-hero__stats .stat__label {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--home-c-ash);
  margin-bottom: 6px;
}

.page-home .home-hero__stats .stat__num {
  font-family: var(--home-font-data);
  font-size: 30px;
  font-weight: 700;
  color: var(--home-c-gold);
  line-height: 1.2;
}

.page-home .home-hero__stats .stat__num .text-accent {
  color: var(--home-c-accent);
}

.page-home .home-hero__visual {
  position: relative;
  margin: 0;
}

.page-home .home-hero__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  filter: saturate(.85) contrast(1.05);
}

.page-home .home-hero__tactics {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .hero-line {
  fill: none;
  stroke-width: 2;
}

.page-home .hero-line--dash {
  stroke: var(--home-c-accent);
  stroke-dasharray: 6 6;
}

.page-home .hero-line--solid {
  stroke: rgba(255, 215, 0, .6);
  stroke-width: 1.5;
}

.page-home .hero-dot {
  fill: var(--home-c-accent);
}

.page-home .hero-dot--gold {
  fill: var(--home-c-gold);
}

.page-home .hero-arrow {
  fill: none;
  stroke: var(--home-c-gold);
  stroke-width: 2;
}

.page-home .home-hero__cap {
  position: absolute;
  bottom: 18px;
  left: 0;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--home-c-mist);
  background: rgba(11, 31, 58, .85);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.page-home .home-hero__scroll {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--home-c-ash);
  transition: color .3s ease;
  z-index: 2;
}

.page-home .home-hero__scroll:hover {
  color: var(--home-c-gold);
}

.page-home .home-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--home-c-accent), transparent);
  position: relative;
  overflow: hidden;
}

.page-home .home-hero__scroll-line::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--home-c-gold);
  animation: home-scroll-line 2s ease-in-out infinite;
}

/* ============ 快速导航 ============ */
.page-home .home-quick {
  padding: 72px 20px;
  background: linear-gradient(180deg, var(--home-c-ocean) 0%, var(--home-c-space) 100%);
  position: relative;
}

.page-home .home-quick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--home-c-accent) 20%, var(--home-c-gold) 80%, transparent);
}

.page-home .home-quick__head {
  margin-bottom: 40px;
}

.page-home .home-quick__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .home-quick__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  text-decoration: none;
  background: var(--home-c-space);
  border: 1px solid rgba(255, 255, 255, .08);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}

.page-home .home-quick__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--home-c-accent);
  transition: height .3s ease;
}

.page-home .home-quick__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, .6);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.page-home .home-quick__card:hover::before {
  height: 100%;
}

.page-home .home-quick__card--primary {
  background: linear-gradient(135deg, var(--home-c-space) 0%, #1A3152 100%);
}

.page-home .home-quick__num {
  font-size: 14px;
  color: var(--home-c-gold);
  letter-spacing: .1em;
}

.page-home .home-quick__card-title {
  font-family: var(--home-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--home-c-white);
  margin: 0;
}

.page-home .home-quick__card-desc {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-c-mist);
  margin: 0 0 8px;
}

.page-home .home-quick__card .btn {
  align-self: flex-start;
}

/* ============ 今日赛程 ============ */
.page-home .home-schedule {
  padding: 72px 20px;
  background: var(--home-c-space);
}

.page-home .home-schedule__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-home .home-schedule__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-schedule__cal {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  margin: 8px 0;
}

.page-home .home-schedule__note {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.75;
  color: var(--home-c-ash);
  margin: 0;
}

.page-home .home-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .home-match {
  padding: 20px 24px;
  background: var(--home-c-ocean);
  border-left: 4px solid transparent;
  transition: border-left-color .3s ease, transform .3s ease;
}

.page-home .home-match:hover {
  border-left-color: var(--home-c-accent);
  transform: translateX(6px);
}

.page-home .home-match__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.page-home .home-match__time {
  font-size: 14px;
  color: var(--home-c-gold);
  letter-spacing: .06em;
}

.page-home .home-match__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-match__team {
  font-family: var(--home-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--home-c-white);
}

.page-home .home-match__vs {
  font-size: 13px;
  color: var(--home-c-accent);
  letter-spacing: .1em;
}

.page-home .home-match__status {
  font-family: var(--home-font-data);
  font-size: 12px;
  color: var(--home-c-ash);
  margin: 10px 0 0;
  letter-spacing: .04em;
}

.page-home .home-schedule__more {
  text-align: right;
  margin-top: 8px;
}

.page-home .home-schedule__more a {
  font-family: var(--home-font-head);
  font-size: 14px;
  color: var(--home-c-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}

.page-home .home-schedule__more a:hover {
  color: var(--home-c-gold);
  border-bottom-color: var(--home-c-gold);
}

/* ============ 最新战报 ============ */
.page-home .home-reports {
  padding: 72px 20px;
  background: linear-gradient(180deg, var(--home-c-space) 0%, var(--home-c-ink) 130%);
}

.page-home .home-reports__head {
  margin-bottom: 40px;
}

.page-home .home-reports__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.page-home .home-reports__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 20% 100%, 0 80%);
}

.page-home .home-reports__list {
  display: flex;
  flex-direction: column;
}

.page-home .home-report {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  transition: background .3s ease, padding-left .3s ease;
}

.page-home .home-report:last-child {
  border-bottom: none;
}

.page-home .home-report:hover {
  background: rgba(20, 44, 76, .6);
  padding-left: 16px;
}

.page-home .home-report__title {
  font-family: var(--home-font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--home-c-white);
  margin: 8px 0 6px;
  line-height: 1.4;
}

.page-home .home-report:hover .home-report__title {
  color: var(--home-c-accent);
}

.page-home .home-report__excerpt {
  font-family: var(--home-font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-c-ash);
  margin: 0;
}

.page-home .home-reports__more {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ 布局解读 ============ */
.page-home .home-layout {
  padding: 72px 20px 88px;
  background: var(--home-c-space);
  position: relative;
  overflow: hidden;
}

.page-home .home-layout::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(255, 215, 0, .12);
  border-radius: 50%;
}

.page-home .home-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px;
  background: linear-gradient(135deg, var(--home-c-ocean) 0%, var(--home-c-ink) 100%);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  position: relative;
}

.page-home .home-layout__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.page-home .home-layout__body {
  font-family: var(--home-font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--home-c-mist);
  margin: 0 0 12px;
}

.page-home .home-layout__chart {
  width: 100%;
  height: auto;
  display: block;
}

.page-home .layout-chart__line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.page-home .layout-chart__line--orange {
  stroke: var(--home-c-accent);
}

.page-home .layout-chart__line--gold {
  stroke: var(--home-c-gold);
  stroke-dasharray: 4 4;
}

.page-home .layout-chart__line--white {
  stroke: var(--home-c-mist);
  stroke-width: 1.5;
  opacity: .7;
}

.page-home .layout-chart__node {
  fill: var(--home-c-white);
}

.page-home .layout-chart__node--gold {
  fill: var(--home-c-gold);
  r: 5;
}

.page-home .layout-chart__label {
  font-family: var(--home-font-data);
  font-size: 10px;
  fill: var(--home-c-ash);
  letter-spacing: .12em;
}

/* ============ 动效 ============ */
@keyframes home-shine {
  0% { left: -80%; }
  60% { left: 120%; }
  100% { left: 120%; }
}

@keyframes home-scroll-line {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============ 响应式 ============ */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 88px 32px 72px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 52px;
  }

  .page-home .home-hero__title {
    font-size: 46px;
  }

  .page-home .home-hero__desc {
    font-size: 16px;
  }

  .page-home .home-hero__stats {
    gap: 32px 44px;
  }

  .page-home .home-quick {
    padding: 88px 32px;
  }

  .page-home .home-quick__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-schedule {
    padding: 88px 32px;
  }

  .page-home .home-schedule__layout {
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 64px;
  }

  .page-home .home-reports {
    padding: 88px 32px;
  }

  .page-home .home-reports__layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: center;
  }

  .page-home .home-reports__img {
    height: 100%;
    max-height: 360px;
  }

  .page-home .home-layout {
    padding: 88px 32px 104px;
  }

  .page-home .home-layout__inner {
    grid-template-columns: 1.1fr .9fr;
    padding: 48px 44px;
    gap: 48px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-home .home-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .page-home .home-hero__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .page-home .home-hero__scroll {
    display: none;
  }

  .page-home .home-hero__stats {
    gap: 16px 20px;
  }

  .page-home .home-hero__stats .stat {
    min-width: 76px;
  }

  .page-home .home-hero__stats .stat__num {
    font-size: 24px;
  }

  .page-home .home-match__teams {
    flex-direction: column;
    text-align: center;
  }

  .page-home .home-match__vs {
    font-size: 12px;
  }

  .page-home .home-layout__inner {
    padding: 28px 18px;
  }
}

</main>
