.page-home {
  --home-deep: #084A70;
  --home-ink-soft: rgba(255, 255, 255, 0.78);
  --home-ink-line: rgba(11, 92, 138, 0.14);
  --home-neon-glass: rgba(0, 229, 255, 0.14);
}

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

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

.page-home .home-section {
  padding: 52px 0;
}

.page-home .home-section-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.page-home .home-section-head > div {
  flex: 1;
  min-width: 0;
}

.page-home .home-section-head .section-num {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 0.9;
  color: rgba(11, 92, 138, 0.22);
  user-select: none;
}

.page-home .home-section-head h2 {
  margin: 6px 0 0;
  line-height: 1.25;
}

.page-home .home-section-head .section-kicker {
  margin: 0;
}

/* 首屏 */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 76px;
  background:
    linear-gradient(118deg, var(--home-neon-glass) 0%, transparent 44%),
    linear-gradient(135deg, var(--home-deep) 0%, var(--color-primary) 62%, var(--color-primary-dark) 100%);
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  background-image: repeating-linear-gradient(
    112deg,
    transparent 0,
    transparent 22px,
    rgba(255, 255, 255, 0.06) 22px,
    rgba(255, 255, 255, 0.06) 24px
  );
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero-copy {
  max-width: 660px;
}

.page-home .home-hero .breadcrumb {
  margin: 0 0 24px;
}

.page-home .home-hero .breadcrumb-item,
.page-home .home-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.68);
}

.page-home .home-hero .breadcrumb a {
  color: var(--color-neon);
  text-decoration: none;
}

.page-home .home-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.page-home .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neon);
}

.page-home .home-hero-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-neon);
  display: inline-block;
}

.page-home .home-hero-title {
  margin: 0 0 18px;
  font-size: var(--text-h1);
  line-height: 1.12;
  color: #fff;
}

.page-home .home-hero-lead {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--home-ink-soft);
  max-width: 56ch;
}

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

.page-home .home-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.page-home .home-hero-link:hover {
  border-color: var(--color-neon);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.page-home .home-hero-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-hero-visual {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
  max-width: 560px;
}

.page-home .home-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-float);
}

.page-home .home-hero-chip {
  position: absolute;
  white-space: nowrap;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  box-shadow: var(--shadow-card);
}

.page-home .home-hero-chip-top {
  top: 26px;
  right: 6px;
}

.page-home .home-hero-chip-bottom {
  bottom: 36px;
  left: 6px;
}

.page-home .home-hero-chip .text-data {
  color: var(--color-accent);
  font-weight: 700;
}

/* 01 版本更新 */
.page-home .home-update {
  margin-top: 8px;
}

.page-home .home-update-grid {
  display: grid;
  gap: 18px;
}

.page-home .home-update-card {
  position: relative;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  border-top: 3px solid var(--color-neon);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  filter: drop-shadow(0 8px 24px rgba(11, 92, 138, 0.1));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.page-home .home-update-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 14px 30px rgba(11, 92, 138, 0.16));
}

.page-home .home-update-index {
  display: block;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.34;
  margin-bottom: 16px;
}

.page-home .home-update-card h3 {
  margin: 0 0 10px;
  font-size: var(--text-h3);
}

.page-home .home-update-card p {
  margin: 0;
  color: rgba(26, 26, 46, 0.72);
  line-height: 1.7;
}

.page-home .home-update-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 220px;
}

.page-home .home-update-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-update-note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 26px;
}

.page-home .home-update-note p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-ink);
}

.page-home .home-update-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  line-height: 1.6;
}

/* 02 版本对照 */
.page-home .home-versions {
  background: var(--color-bg-soft);
  border-top: 2px solid var(--home-ink-line);
  border-bottom: 2px solid var(--home-ink-line);
}

.page-home .home-versions-wrap {
  display: grid;
  gap: 18px;
}

.page-home .home-version-card {
  border-radius: var(--radius-lg);
  padding: 34px 32px;
}

.page-home .home-version-desktop {
  background:
    linear-gradient(118deg, rgba(0, 229, 255, 0.12), transparent 46%),
    linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}

.page-home .home-version-mobile {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  color: var(--color-ink);
  box-shadow: var(--shadow-card);
}

.page-home .home-version-card h3 {
  margin: 16px 0 12px;
  font-size: var(--text-h3);
}

.page-home .home-version-card > p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-version-mobile > p {
  color: rgba(26, 26, 46, 0.72);
}

.page-home .home-version-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-version-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
}

.page-home .home-version-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.page-home .home-version-desktop a,
.page-home .home-version-mobile a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .home-version-desktop a {
  color: var(--color-neon);
}

.page-home .home-version-mobile a {
  color: var(--color-primary);
}

.page-home .home-versions-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--color-bg);
  border: 1px dashed rgba(11, 92, 138, 0.3);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.page-home .home-versions-arrow {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.page-home .home-versions-mid-text {
  font-size: 14px;
  color: var(--color-ink);
}

.page-home .home-versions-mid-code {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .home-versions-media {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .home-versions-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 03 赛事索引 */
.page-home .home-index-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-index-map {
  background: var(--color-primary-tint);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .home-index-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .home-index-lead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.75;
}

.page-home .home-index-stats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-index-stat {
  flex: 1;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 18px 12px;
  text-align: center;
}

.page-home .home-index-num {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary);
}

.page-home .home-index-label {
  font-size: 14px;
  color: var(--color-ink);
}

.page-home .home-index-legend {
  margin-bottom: 20px;
}

.page-home .home-index-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* 04 战报与阵容 */
.page-home .home-reports-grid {
  display: grid;
  gap: 18px;
}

.page-home .home-reports-list {
  padding: 28px;
}

.page-home .home-reports-list h3,
.page-home .home-lineups h3 {
  margin: 0 0 6px;
  font-size: var(--text-h3);
}

.page-home .home-reports-items {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.page-home .home-report-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--home-ink-line);
}

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

.page-home .home-report-title {
  flex: 1 1 190px;
  line-height: 1.5;
}

.page-home .home-report-score {
  margin-left: auto;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.page-home .home-lineups {
  background:
    linear-gradient(118deg, rgba(0, 229, 255, 0.14), transparent 48%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

.page-home .home-lineups-desc {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .home-lineups-dims {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.page-home .home-lineup-dim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  line-height: 1.5;
}

.page-home .home-lineup-key {
  color: var(--color-neon);
  font-weight: 700;
}

.page-home .home-lineup-val {
  text-align: right;
}

.page-home .home-lineups-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 05 前瞻标签 */
.page-home .home-preview-cloud {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.page-home .home-preview-lead {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
}

.page-home .home-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 关于与信任 */
.page-home .home-about {
  background: var(--color-ink);
  color: #fff;
  margin-top: 4px;
  padding: 64px 0;
}

.page-home .home-about-inner {
  display: grid;
  gap: 28px;
}

.page-home .home-about .section-kicker {
  color: var(--color-neon);
}

.page-home .home-about h2 {
  color: #fff;
  margin: 6px 0 16px;
}

.page-home .home-about-copy > p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 0 20px;
}

.page-home .home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .home-about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-pill);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.page-home .home-about-link:hover {
  border-color: var(--color-neon);
  background: rgba(0, 229, 255, 0.12);
}

.page-home .home-about-trust {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}

/* 响应式 */
@media (min-width: 640px) {
  .page-home .home-update-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .home-update-media,
  .page-home .home-update-note {
    grid-column: auto;
  }

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

  .page-home .home-about-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 64px 0 96px;
  }

  .page-home .home-hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }

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

  .page-home .home-hero-chip-top {
    right: 12px;
  }

  .page-home .home-hero-chip-bottom {
    left: 12px;
  }

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

@media (min-width: 960px) {
  .page-home .home-update-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-update-media {
    grid-column: span 2;
  }

  .page-home .home-update-note {
    grid-column: 1;
  }

  .page-home .home-versions-wrap {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .page-home .home-versions-mid {
    flex-direction: column;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-lg);
    padding: 24px 16px;
  }

  .page-home .home-versions-media {
    grid-column: 1 / -1;
  }
}
