.page-home {
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

.page-home::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1180px;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(23, 69, 58, 0.32) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 69, 58, 0.32) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
}

.page-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(58% 34% at 80% 6%, rgba(53, 241, 196, 0.08), transparent 72%),
    radial-gradient(46% 32% at 6% 48%, rgba(255, 122, 47, 0.055), transparent 72%);
}

/* ---------- 首屏 ---------- */

.page-home .hero {
  position: relative;
  padding-block: clamp(18px, 3vw, 34px) clamp(30px, 5vw, 56px);
}

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

.page-home .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.page-home h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 7.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 16ch;
}

.page-home .hero-copy .lede {
  margin: 0;
  max-width: 40ch;
}

.page-home .entry-panel {
  margin-top: 6px;
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.page-home .entry-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.page-home .entry-ver {
  font-size: 13px;
  color: var(--cyan-soft);
}

.page-home .entry-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.page-home .entry-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.page-home .entry-panel .btn {
  justify-content: center;
  text-align: center;
  margin-top: 4px;
}

.page-home .entry-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dashed var(--line);
  align-self: start;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .entry-link:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* 右侧快讯带 */

.page-home .hero-live {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.page-home .hero-live__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 55%;
  opacity: 0.42;
  filter: saturate(0.82) contrast(1.06);
}

.page-home .hero-live::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 18, 15, 0.2) 0%, rgba(6, 18, 15, 0.82) 52%, var(--ink) 100%);
}

.page-home .hero-live__body {
  position: relative;
  z-index: 1;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.page-home .live-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .live-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-home .live-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--cyan-soft);
}

.page-home .live-viewport {
  height: 244px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 16%, #000 84%, transparent 100%);
}

.page-home .live-track {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: home-live-scroll 34s linear infinite;
}

.page-home .live-viewport:hover .live-track {
  animation-play-state: paused;
}

@keyframes home-live-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.page-home .live-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.page-home .live-time {
  font-size: 12px;
  color: var(--cyan-soft);
}

.page-home .live-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* ---------- 区块标题 ---------- */

.page-home .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-home .more-link {
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(53, 241, 196, 0.32);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}

.page-home .more-link:hover {
  border-bottom-color: var(--cyan);
}

/* ---------- 今日动态 ---------- */

.page-home .brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.page-home .brief-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.page-home .brief-row:hover {
  background: rgba(53, 241, 196, 0.045);
  border-bottom-color: var(--line);
}

.page-home .brief-num {
  font-size: 13px;
  color: var(--muted);
}

.page-home .brief-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  min-width: 0;
}

/* ---------- 联赛排名 ---------- */

.page-home .rank-lede {
  margin: 0 0 20px;
  max-width: 46ch;
}

.page-home .rank-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
}

.page-home .rank-cell {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--ink-2);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.page-home .rank-cell:hover,
.page-home .rank-cell:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(53, 241, 196, 0.22), 0 14px 32px -20px rgba(53, 241, 196, 0.75);
}

.page-home .rank-name {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.page-home .rank-val {
  font-size: 14px;
  color: var(--cyan-soft);
}

.page-home .rank-val .num {
  font-size: 30px;
  color: var(--num);
  line-height: 1.1;
  margin-right: 2px;
}

.page-home .rank-note {
  font-size: 13px;
  color: var(--muted);
}

.page-home .rank-arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--cyan);
  opacity: 0.4;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.page-home .rank-cell:hover .rank-arrow {
  opacity: 1;
  transform: translateY(-3px);
}

/* ---------- 移动端战报 ---------- */

.page-home .phone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-home .phone-frame {
  justify-self: center;
  width: min(300px, 76vw);
  padding: 10px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(53, 241, 196, 0.09), transparent 42%),
    var(--ink-2);
  box-shadow: 0 0 0 1px rgba(53, 241, 196, 0.12), 0 34px 64px -34px rgba(0, 0, 0, 0.92);
}

.page-home .phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.page-home .phone-copy {
  min-width: 0;
}

.page-home .phone-copy .prose {
  margin-top: 12px;
}

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

.page-home .check-list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.page-home .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 2px;
  background: var(--cyan);
}

/* ---------- 横向时间轴 ---------- */

.page-home .tl-wrap {
  position: relative;
}

.page-home .tl-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 16px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

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

.page-home .tl-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: var(--r-pill);
}

.page-home .tl-inner {
  position: relative;
  display: flex;
  gap: 14px;
  width: max-content;
  padding-top: 36px;
}

.page-home .tl-rail {
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 2px;
  display: block;
}

.page-home .tl-card {
  position: relative;
  display: grid;
  gap: 6px;
  flex: 0 0 244px;
  scroll-snap-align: start;
  padding: 18px 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--ink-2);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.page-home .tl-card::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 241, 196, 0.14), 0 0 14px rgba(53, 241, 196, 0.6);
}

.page-home .tl-card:hover,
.page-home .tl-card:focus-visible {
  border-color: var(--cyan);
  background: rgba(12, 31, 26, 0.96);
  transform: translateY(-2px);
}

.page-home .tl-time {
  font-size: 12px;
  color: var(--cyan-soft);
  letter-spacing: 0.02em;
}

.page-home .tl-title {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}

.page-home .tl-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 版本与状态 ---------- */

.page-home .status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.page-home .status-copy {
  min-width: 0;
}

.page-home .status-copy .prose {
  margin-top: 12px;
}

.page-home .status-copy .data-strip {
  margin-block: 22px;
}

.page-home .data-unit {
  font-size: 13px;
  color: var(--muted);
  margin-left: 2px;
  font-family: var(--font-body);
}

.page-home .ver-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  margin-bottom: 22px;
}

.page-home .ver-details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  color: var(--cyan-soft);
}

.page-home .ver-details summary::-webkit-details-marker {
  display: none;
}

.page-home .ver-details summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--cyan);
  transition: transform 0.22s ease;
}

.page-home .ver-details[open] summary::after {
  transform: rotate(45deg);
}

.page-home .ver-details p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 46ch;
}

.page-home .status-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

/* ---------- 收束带 ---------- */

.page-home .closing-band {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

.page-home .closing-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.page-home .closing-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 18, 15, 0.24) 0%, rgba(6, 18, 15, 0.94) 100%);
}

.page-home .closing-copy {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
  max-width: 600px;
}

.page-home .closing-text {
  margin: 10px 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  max-width: 42ch;
}

.page-home .closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- 响应式 ---------- */

@media (max-width: 420px) {
  .page-home .brief-row {
    grid-template-columns: 26px 1fr;
    row-gap: 6px;
  }

  .page-home .brief-row .pill {
    grid-column: 2 / 3;
    justify-self: start;
  }

  .page-home .live-item {
    grid-template-columns: 46px 1fr;
  }

  .page-home .rank-strip {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (min-width: 900px) {
  .page-home .phone-grid {
    grid-template-columns: 340px 1fr;
    gap: 54px;
  }

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

  .page-home .brief-row {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
    padding: 14px 6px;
  }

  .page-home .brief-text {
    font-size: 15.5px;
  }

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

  .page-home .live-viewport {
    height: 300px;
  }

  .page-home .hero-live__body {
    padding: 26px 26px 22px;
  }
}

@media (min-width: 960px) {
  .page-home .hero-wrap {
    grid-template-columns: 5fr 7fr;
    gap: 28px;
    align-items: stretch;
  }

  .page-home .hero-copy {
    justify-content: center;
    padding-block: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .live-track {
    animation: none;
  }
}
<<<END>>>
