.page-home {
  --hero-card-tilt: -2deg;
  --hero-card-tilt-inner: 2deg;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow: clip;
}

.page-home .container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

.page-home .section {
  padding-block: 56px 64px;
}

.page-home .section-header {
  margin-bottom: 28px;
  padding-left: 12px;
  border-left: 3px solid var(--green-bright);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .section-title {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

.page-home .section-subtitle {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0;
}

.page-home .card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.page-home .card--accent {
  border-top: 4px solid var(--orange);
}

.page-home .card-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .card-body {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-main);
}

.page-home .card-footnote {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-sub);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.page-home .stat-label {
  font-size: 12px;
  color: var(--text-sub);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-home .stat-number {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.page-home .stat-number--yellow {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.2;
}

.page-home .stat-number--green {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-bright);
  line-height: 1.2;
}

.page-home .pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.page-home .pill--yellow {
  background: var(--yellow);
  color: var(--bg-deep);
}

.page-home .pill--red {
  background: var(--red);
  color: var(--text-main);
}

.page-home .pill--green {
  background: rgba(46, 139, 87, 0.28);
  color: var(--green-bright);
  border: 1px solid var(--green-bright);
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  gap: 8px;
  line-height: 1.3;
  border: 1px solid transparent;
}

.page-home .btn-primary {
  background: var(--orange);
  color: var(--text-main);
  border-color: var(--orange);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(245, 245, 245, 0.5);
}

.page-home .live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(230, 247, 76, 0.7);
  animation: home-pulse 2s infinite;
  flex: 0 0 auto;
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 247, 76, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(230, 247, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 247, 76, 0); }
}

/* 首屏 Hero */
.page-home .home-hero {
  position: relative;
  padding: 32px 0 96px;
  background:
    linear-gradient(102deg, rgba(11, 30, 23, 0.96) 0%, rgba(11, 30, 23, 0.82) 58%, rgba(46, 139, 87, 0.35) 100%),
    var(--bg-deep);
  overflow: hidden;
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.7) contrast(1.05);
  z-index: 0;
}

.page-home .hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .hero-schedule-card {
  background: rgba(16, 42, 32, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transform: rotate(var(--hero-card-tilt));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.page-home .hero-schedule-card > * {
  transform: rotate(var(--hero-card-tilt-inner));
}

.page-home .hero-card-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .live-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .hero-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.page-home .hero-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-sub);
  margin: 0 0 20px;
}

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

.page-home .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.page-home .hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .hero-meta-item .stat-number,
.page-home .hero-meta-item .stat-number--yellow {
  font-size: 22px;
}

.page-home .hero-side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .hero-live-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(230, 247, 76, 0.08);
  border: 1px solid rgba(230, 247, 76, 0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.page-home .live-banner-icon {
  width: 6px;
  height: 40px;
  background: var(--yellow);
  border-radius: 3px;
  flex: 0 0 auto;
}

.page-home .live-banner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .live-banner-value {
  font-size: 14px;
  color: var(--text-main);
  margin: 2px 0 0;
  font-weight: 600;
}

.page-home .hero-data-note {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green-bright);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.page-home .note-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-home .note-value {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .note-detail {
  font-size: 13px;
  color: var(--text-sub);
  margin: 4px 0 0;
}

/* 进失球分布 */
.page-home .home-distribution .distribution-grid {
  display: grid;
  gap: 16px;
}

.page-home .distribution-main {
  background: linear-gradient(145deg, var(--bg-panel) 0%, rgba(16, 42, 32, 0.85) 100%);
}

.page-home .card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .distribution-score {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 6px;
}

.page-home .distribution-score .stat-number {
  font-size: 48px;
}

.page-home .score-divider {
  font-family: var(--font-mono);
  color: var(--text-sub);
  font-size: 24px;
}

.page-home .distribution-status {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0 0 16px;
}

.page-home .distribution-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

.page-home .tab-item {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-sub);
  padding: 6px 12px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.page-home .tab-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.page-home .tab-item.is-active {
  background: rgba(230, 247, 76, 0.12);
  color: var(--yellow);
  font-weight: 600;
}

.page-home .distribution-chart {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: linear-gradient(145deg, #0d2018, #143025);
  border: 1px solid var(--border);
  display: block;
}

.page-home .distribution-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .mini-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--green-bright);
}

.page-home .mini-stat:nth-child(2) {
  border-left-color: var(--orange);
}

.page-home .mini-stat:nth-child(3) {
  border-left-color: var(--yellow);
}

.page-home .mini-stat:nth-child(4) {
  border-left-color: var(--indigo);
}

.page-home .distribution-side {
  display: grid;
  gap: 16px;
}

.page-home .distribution-side .card {
  --green: #2E8B57;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}

.page-home .section--indigo {
  background: linear-gradient(140deg, rgba(75, 0, 130, 0.45), rgba(75, 0, 130, 0.15));
  border-color: rgba(75, 0, 130, 0.5);
}

.page-home .section--wine {
  background: linear-gradient(140deg, rgba(128, 0, 32, 0.45), rgba(128, 0, 32, 0.12));
  border-color: rgba(128, 0, 32, 0.6);
}

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

.page-home .dimension-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.page-home .dimension-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* 轮次安排 */
.page-home .home-rounds .rounds-layout {
  display: grid;
  gap: 24px;
}

.page-home .rounds-main {
  display: grid;
  gap: 12px;
}

.page-home .round-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-home .round-row:hover {
  transform: translateX(-4px);
  border-color: var(--green-bright);
}

.page-home .round-row--upcoming {
  opacity: 0.82;
}

.page-home .round-number {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  background: rgba(230, 247, 76, 0.08);
  border-radius: var(--radius);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 247, 76, 0.25);
}

.page-home .round-row--upcoming .round-number {
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
}

.page-home .round-info {
  flex: 1;
  min-width: 0;
}

.page-home .round-name {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.page-home .round-meta {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.5;
}

.page-home .round-status {
  flex: 0 0 auto;
}

.page-home .rounds-note {
  margin-top: 8px;
  padding: 16px;
  background: rgba(230, 247, 76, 0.05);
  border: 1px dashed rgba(230, 247, 76, 0.25);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

.page-home .rounds-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .rounds-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

.page-home .rounds-image-caption {
  background: var(--bg-panel);
  border-top: 3px solid var(--green-bright);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 12px 16px;
}

.page-home .caption-index {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-home .rounds-image-caption p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
}

/* 焦点赛事 */
.page-home .home-focus .focus-grid {
  display: grid;
  gap: 16px;
}

.page-home .focus-main-card {
  background: linear-gradient(150deg, var(--bg-panel) 0%, rgba(46, 139, 87, 0.18) 100%);
  border-left: 4px solid var(--orange);
}

.page-home .focus-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .focus-league {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.page-home .focus-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.page-home .focus-team-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.page-home .focus-team .stat-number {
  font-size: 40px;
}

.page-home .focus-vs {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-sub);
  flex: 0 0 auto;
}

.page-home .focus-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .focus-metric {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.page-home .focus-metric .stat-number {
  font-size: 16px;
}

.page-home .text-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(230, 247, 76, 0.4);
}

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

.page-home .focus-sub-card {
  background: var(--bg-panel);
}

.page-home .focus-sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .focus-sub-score {
  font-size: 17px;
  margin: 0 0 8px;
  line-height: 1.5;
  font-weight: 600;
}

.page-home .focus-sub-score .stat-number {
  font-size: 24px;
  display: inline-block;
}

.page-home .focus-sub-score .score-divider {
  display: inline-block;
  margin-inline: 6px;
}

.page-home .focus-sub-meta {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* 关注列表 */
.page-home .home-follow .follow-layout {
  display: grid;
  gap: 20px;
}

.page-home .follow-selector {
  background: linear-gradient(145deg, var(--bg-panel), rgba(16, 42, 32, 0.6));
}

.page-home .follow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.page-home .tag-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-sub);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  line-height: 1.4;
}

.page-home .tag-item:hover {
  border-color: var(--green-bright);
  color: var(--text-main);
}

.page-home .tag-item.is-on {
  background: var(--green);
  border-color: var(--green);
  color: var(--text-main);
  font-weight: 600;
}

.page-home .follow-tip {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 18px;
}

.page-home .follow-demo-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .demo-stat {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid var(--border);
}

.page-home .demo-stat:nth-child(2) {
  border-top-color: var(--yellow);
}

.page-home .demo-stat:nth-child(3) {
  border-top-color: var(--green-bright);
}

.page-home .demo-stat:nth-child(4) {
  border-top-color: var(--orange);
}

.page-home .follow-switch-note {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-right: 4px solid var(--indigo);
}

.page-home .switch-note-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

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

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

.page-home .switch-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--indigo);
  transform: skewX(-20deg);
}

.page-home .switch-note-callout {
  background: rgba(230, 247, 76, 0.06);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-main);
}

/* 下载官方APP */
.page-home .home-download {
  background: linear-gradient(120deg, rgba(128, 0, 32, 0.35), rgba(11, 30, 23, 0.9) 60%, rgba(46, 139, 87, 0.2));
  border-block: 1px solid var(--border);
}

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

.page-home .home-download .section-index {
  font-size: 14px;
}

.page-home .home-download .section-title {
  font-size: 30px;
  margin: 4px 0 14px;
}

.page-home .download-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-main);
  margin: 0 0 12px;
  max-width: 640px;
}

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

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

.page-home .download-qr-mock {
  width: 168px;
  aspect-ratio: 1;
  background: var(--text-main);
  border-radius: var(--radius);
  padding: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-home .download-qr-mock p {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bg-deep);
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}

.page-home .qr-grid-mark {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, transparent 47%, rgba(11, 30, 23, 0.25) 47%, rgba(11, 30, 23, 0.25) 53%, transparent 53%),
    linear-gradient(90deg, transparent 47%, rgba(11, 30, 23, 0.25) 47%, rgba(11, 30, 23, 0.25) 53%, transparent 53%),
    radial-gradient(circle at 24% 24%, rgba(11, 30, 23, 0.5) 0%, rgba(11, 30, 23, 0.5) 18%, transparent 19%),
    radial-gradient(circle at 76% 24%, rgba(11, 30, 23, 0.5) 0%, rgba(11, 30, 23, 0.5) 18%, transparent 19%),
    radial-gradient(circle at 50% 76%, rgba(11, 30, 23, 0.5) 0%, rgba(11, 30, 23, 0.5) 18%, transparent 19%);
  border-radius: var(--radius);
}

.page-home .download-note {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  max-width: 260px;
  margin: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-bright);
}

/* 数据更新公告 */
.page-home .home-live-update {
  background: linear-gradient(160deg, var(--bg-deep) 0%, rgba(16, 42, 32, 0.55) 100%);
}

.page-home .home-live-update .live-update-layout {
  display: grid;
  gap: 20px;
}

.page-home .live-update-ticker {
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.page-home .ticker-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.page-home .ticker-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-home .ticker-viewport {
  overflow: hidden;
  padding: 12px 16px;
  display: flex;
}

.page-home .ticker-content {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: home-ticker-scroll 18s linear infinite;
  min-width: max-content;
}

@keyframes home-ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.page-home .ticker-item {
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.5;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.page-home .live-update-list {
  display: grid;
  gap: 12px;
}

.page-home .update-item {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  border-left: 3px solid var(--green-bright);
}

.page-home .update-item:nth-child(2) {
  border-left-color: var(--orange);
}

.page-home .update-item:nth-child(3) {
  border-left-color: var(--red);
}

.page-home .update-item:nth-child(4) {
  border-left-color: var(--indigo);
}

.page-home .update-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  flex: 0 0 auto;
  padding-top: 2px;
}

.page-home .update-body {
  flex: 1;
  min-width: 0;
}

.page-home .update-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.page-home .update-meta {
  margin: 0;
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

.page-home .live-update-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  display: block;
}

.page-home .live-all-link {
  margin-top: 24px;
}

/* 入口链接 */
.page-home .home-entry-links {
  padding-top: 0;
}

.page-home .entry-links-grid {
  display: grid;
  gap: 12px;
}

.page-home .entry-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.page-home .entry-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--green-bright);
}

.page-home .entry-link-index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.page-home .entry-link-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-main);
}

.page-home .entry-link-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* 面包屑 */
.page-home .home-breadcrumb {
  padding: 0 16px 32px;
}

.page-home .breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-sub);
  flex-wrap: wrap;
}

.page-home .breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .breadcrumb-list li:not(:last-child)::after {
  content: "·";
  color: var(--text-sub);
  font-family: var(--font-mono);
}

.page-home .breadcrumb-list a {
  color: var(--text-sub);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}

.page-home .breadcrumb-list a:hover {
  color: var(--text-main);
  border-bottom-color: var(--text-main);
}

.page-home .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .live-pulse {
    animation: none;
  }

  .page-home .ticker-content {
    animation-duration: 60s;
  }
}

@media (min-width: 768px) {
  .page-home .container {
    padding-inline: 28px;
  }

  .page-home .section {
    padding-block: 72px 80px;
  }

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

  .page-home .hero-schedule-card {
    flex: 1.3;
    padding: 36px 32px;
  }

  .page-home .hero-side-stack {
    flex: 0.7;
  }

  .page-home .hero-title {
    font-size: 48px;
  }

  .page-home .distribution-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }

  .page-home .distribution-side {
    grid-template-columns: 1fr;
  }

  .page-home .distribution-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .rounds-layout {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }

  .page-home .focus-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: stretch;
  }

  .page-home .focus-main-card {
    grid-row: span 1;
  }

  .page-home .follow-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .page-home .download-inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }

  .page-home .download-aside {
    align-items: flex-end;
    text-align: right;
  }

  .page-home .live-update-layout {
    grid-template-columns: 1.5fr 1fr;
  }

  .page-home .live-update-ticker {
    grid-column: 1 / -1;
  }

  .page-home .live-update-image {
    grid-column: 1 / 2;
    max-width: 360px;
  }

  .page-home .entry-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-home .hero-schedule-card {
    flex: 1.35;
  }

  .page-home .hero-side-stack {
    flex: 0.65;
  }

  .page-home .home-download .section-title {
    font-size: 36px;
  }

  .page-home .distribution-grid {
    grid-template-columns: 1.75fr 1fr;
  }

  .page-home .live-update-layout {
    grid-template-columns: 1fr 1.2fr 0.6fr;
    align-items: start;
  }

  .page-home .live-update-ticker {
    grid-column: 1 / -1;
  }

  .page-home .live-update-image {
    grid-column: 3 / 4;
    grid-row: 2;
    max-width: 100%;
  }

  .page-home .live-update-list {
    grid-column: 1 / 3;
  }
}
