/* ===== 用户提供的全局设计令牌锚点不在此书写，直接用 var() 引用 ==== */

.page-home {
  --home-c-primary: #0A1F44;
  --home-c-accent: #FF6A00;
  --home-c-cyan: #00D4FF;
  --home-c-indigo: #3C2A6E;
  --home-c-teal: #0F4C52;
  --home-c-wine: #7D1F2A;
  --home-c-cream: #FAF7F2;
  --home-c-ink: #061020;
  --home-c-gray: #AAB4C0;
  --home-font-heading: Oswald, Impact, 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --home-font-body: Roboto, 'Noto Sans SC', 'PingFang SC', sans-serif;
  --home-font-mono: 'Roboto Mono', 'SFMono-Regular', Consolas, monospace;
  --home-border-w: 3px;
  --home-shadow-o: 8px;
  --home-radius: 2px;
  --home-ease: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  background:
    linear-gradient(130deg, rgba(10,31,68,0.82) 0%, rgba(6,16,32,0.95) 45%, rgba(10,31,68,0.88) 100%);
  color: var(--home-c-cream);
}

.page-home .my-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .my-section {
  padding: 64px 0;
  position: relative;
}

.page-home .my-section--reverse {
  background: linear-gradient(180deg, var(--home-c-ink) 0%, #0d1a33 100%);
  border-top: 1px solid rgba(0,212,255,0.25);
  border-bottom: 1px solid rgba(0,212,255,0.25);
}

.page-home .my-section-title {
  font-family: var(--home-font-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--home-c-cream);
  text-transform: uppercase;
  margin: 8px 0 12px 0;
}

.page-home .my-slant-label {
  display: inline-block;
  background: var(--home-c-accent);
  color: var(--home-c-ink);
  font-family: var(--home-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px 6px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  border: none;
}

.page-home .my-slant-label-cyan {
  background: var(--home-c-cyan);
  color: var(--home-c-ink);
}

.page-home .my-btn {
  display: inline-block;
  font-family: var(--home-font-body);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  padding: 14px 28px;
  text-decoration: none;
  color: var(--home-c-cream);
  background: transparent;
  border: 2px solid var(--home-c-cream);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
  transition: transform var(--home-ease), border-color var(--home-ease), background var(--home-ease);
}

.page-home .my-btn:hover,
.page-home .my-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--home-c-cyan);
}

.page-home .my-btn-primary {
  background: var(--home-c-accent);
  border-color: var(--home-c-accent);
  color: var(--home-c-ink);
}

.page-home .my-btn-primary:hover,
.page-home .my-btn-primary:focus-visible {
  border-color: var(--home-c-accent);
  background: #ff8a33;
}

.page-home .my-btn-outline-cyan {
  border-color: var(--home-c-cyan);
  color: var(--home-c-cyan);
}

.page-home .my-btn-outline-cyan:hover,
.page-home .my-btn-outline-cyan:focus-visible {
  background: rgba(0,212,255,0.12);
  border-color: var(--home-c-cyan);
}

.page-home .my-tag {
  display: inline-block;
  font-family: var(--home-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--home-c-cream);
  background: transparent;
  margin-right: 6px;
  margin-bottom: 6px;
  border-radius: 0;
}

.page-home .my-tag-accent {
  border-color: var(--home-c-accent);
  color: var(--home-c-accent);
}

.page-home .my-tag-cyan {
  border-color: var(--home-c-cyan);
  color: var(--home-c-cyan);
}

.page-home .my-tag-wine {
  border-color: #e0586a;
  color: #e0586a;
}

.page-home .num {
  font-family: var(--home-font-mono);
  font-variant-numeric: tabular-nums;
}

/* ===== 1. 首屏站点状态板 ===== */
.page-home .status-board {
  position: relative;
  padding: 48px 0 24px 0;
  overflow: hidden;
}

.page-home .status-board__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-home .status-board__left {
  position: relative;
  z-index: 2;
}

.page-home .status-board__kicker {
  margin-bottom: 20px;
}

.page-home .status-board__eyebrow {
  font-family: var(--home-font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-c-cyan);
  margin: 0 0 18px 0;
}

.page-home .status-board__title {
  font-family: var(--home-font-heading);
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--home-c-cream);
  margin: 0 0 18px 0;
}

.page-home .status-board__title-line {
  display: block;
  color: var(--home-c-accent);
}

.page-home .status-board__desc {
  font-family: var(--home-font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(250,247,242,0.82);
  max-width: 36em;
  margin: 0 0 28px 0;
  border-left: 3px solid var(--home-c-cyan);
  padding-left: 16px;
}

.page-home .status-board__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.page-home .status-board__right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 300px;
}

.page-home .status-board__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .status-board__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: grayscale(0.4) contrast(1.15);
}

.page-home .status-board__img-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,68,0.95) 0%, rgba(10,31,68,0.42) 55%, rgba(6,16,32,0.68) 100%);
}

.page-home .status-board__status-card {
  position: relative;
  width: 230px;
  background: rgba(6,16,32,0.82);
  border: 2px solid rgba(0,212,255,0.45);
  padding: 20px 18px;
  margin: 24px 0 0 0;
  box-shadow: 8px 8px 0 rgba(0,212,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.page-home .status-board__status-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .status-board__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-c-accent);
  box-shadow: 0 0 0 0 rgba(255,106,0,0.6);
  animation: home-pulse-dot 1.8s ease-out infinite;
}

@keyframes home-pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,106,0,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}

.page-home .status-board__status-label {
  font-family: var(--home-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-c-cyan);
}

.page-home .status-board__status-num {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
  color: var(--home-c-cream);
  margin: 4px 0 4px 0;
}

.page-home .status-board__status-num small {
  font-size: 1.1rem;
  margin-left: 2px;
  color: var(--home-c-accent);
}

.page-home .status-board__status-meta {
  font-family: var(--home-font-body);
  font-size: 0.78rem;
  color: var(--home-c-gray);
  margin: 0 0 12px 0;
}

.page-home .status-board__status-bar {
  height: 4px;
  background: rgba(170,180,192,0.25);
  margin-bottom: 10px;
  overflow: hidden;
}

.page-home .status-board__status-bar span {
  display: block;
  height: 100%;
  width: 92%;
  background: linear-gradient(90deg, var(--home-c-accent), var(--home-c-cyan));
  animation: home-bar-slide 2.4s ease-in-out infinite alternate;
}

@keyframes home-bar-slide {
  from { width: 82%; }
  to { width: 94%; }
}

.page-home .status-board__status-tip {
  font-family: var(--home-font-mono);
  font-size: 0.7rem;
  color: var(--home-c-cyan);
  margin: 0;
}

/* ===== 2. 实时比分滚动条 ===== */
.page-home .score-ticker {
  border-top: 2px solid var(--home-c-accent);
  border-bottom: 2px solid rgba(0,212,255,0.35);
  background: var(--home-c-ink);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.page-home .score-ticker__inner {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.page-home .score-ticker__label {
  width: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-c-accent);
  color: var(--home-c-ink);
  font-family: var(--home-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.page-home .score-ticker__viewport {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.page-home .score-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: home-ticker-run 42s linear infinite;
}

.page-home .score-ticker:hover .score-ticker__track {
  animation-play-state: paused;
}

@keyframes home-ticker-run {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.page-home .score-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid rgba(0,212,255,0.28);
  font-family: var(--home-font-body);
  font-size: 0.82rem;
  color: rgba(250,247,242,0.88);
  white-space: nowrap;
}

.page-home .score-ticker__league {
  font-family: var(--home-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--home-c-cyan);
  text-transform: uppercase;
}

.page-home .score-ticker__team {
  font-weight: 500;
}

.page-home .score-ticker__score {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--home-c-cream);
  background: rgba(0,212,255,0.1);
  padding: 2px 10px;
  border: 1px solid rgba(0,212,255,0.3);
}

.page-home .score-ticker__state {
  font-family: var(--home-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--home-c-accent);
}

@media (prefers-reduced-motion: reduce) {
  .page-home .score-ticker__track {
    animation: none;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .page-home .score-ticker:hover .score-ticker__track {
    animation: none;
  }
  .page-home .status-board__status-bar span {
    animation: none;
    width: 92%;
  }
  .page-home .status-board__status-dot {
    animation: none;
  }
}

/* ===== 3. 内容中心索引 ===== */
.page-home .content-hub {
  background: var(--home-c-primary);
  border-top: 1px solid rgba(0,212,255,0.2);
}

.page-home .content-hub__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.page-home .content-hub__head-desc {
  font-family: var(--home-font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,247,242,0.72);
  max-width: 46%;
  margin: 0 0 10px 0;
}

.page-home .content-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .content-hub-card {
  position: relative;
  background: rgba(250,247,242,0.04);
  border: 3px solid rgba(250,247,242,0.12);
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--home-ease), border-color var(--home-ease), box-shadow var(--home-ease);
  display: flex;
  flex-direction: column;
}

.page-home .content-hub-card:hover,
.page-home .content-hub-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--home-c-cyan);
  box-shadow: 8px 8px 0 rgba(0,212,255,0.12);
}

.page-home .content-hub-card--accent:hover {
  border-color: var(--home-c-accent);
}

.page-home .content-hub-card--wine {
  background: linear-gradient(135deg, var(--home-c-wine) 0%, rgba(125,31,42,0.72) 100%);
}

.page-home .content-hub-card--teal {
  background: linear-gradient(135deg, var(--home-c-teal) 0%, rgba(15,76,82,0.72) 100%);
}

.page-home .content-hub-card--indigo {
  background: linear-gradient(135deg, var(--home-c-indigo) 0%, rgba(60,42,110,0.72) 100%);
}

.page-home .content-hub-card--cream {
  background: var(--home-c-cream);
  border-color: rgba(10,31,68,0.2);
}

.page-home .content-hub-card--cream .content-hub-card__title {
  color: var(--home-c-primary);
}

.page-home .content-hub-card--cream .content-hub-card__text {
  color: rgba(6,16,32,0.72);
}

.page-home .content-hub-card--cream .content-hub-card__tags .my-tag {
  border-color: rgba(10,31,68,0.35);
  color: var(--home-c-primary);
}

.page-home .content-hub-card--cyan {
  background: linear-gradient(135deg, rgba(0,212,255,0.18) 0%, rgba(0,212,255,0.05) 100%);
  border-color: rgba(0,212,255,0.35);
}

.page-home .content-hub-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.page-home .content-hub-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.08);
}

.page-home .content-hub-card__body {
  padding: 20px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .content-hub-card__index {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--home-c-cyan);
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

.page-home .content-hub-card--accent .content-hub-card__index {
  color: var(--home-c-accent);
  opacity: 0.3;
}

.page-home .content-hub-card--cream .content-hub-card__index {
  color: var(--home-c-primary);
  opacity: 0.14;
}

.page-home .content-hub-card__title {
  font-family: var(--home-font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--home-c-cream);
  margin: 0 0 10px 0;
}

.page-home .content-hub-card__text {
  font-family: var(--home-font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250,247,242,0.75);
  margin: 0 0 14px 0;
  flex: 1;
}

.page-home .content-hub-card__tags {
  margin-top: auto;
}

.page-home .content-hub__entry {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-left: 4px solid var(--home-c-accent);
  background: rgba(0,212,255,0.06);
}

.page-home .content-hub__entry p {
  font-family: var(--home-font-body);
  font-size: 0.92rem;
  margin: 0;
  color: rgba(250,247,242,0.82);
}

.page-home .content-hub__entry .my-btn {
  flex-shrink: 0;
}

/* ===== 4. 版本升级快报 ===== */
.page-home .version-update__layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-home .version-update__visual {
  position: relative;
  flex: 1 1 42%;
  min-width: 0;
}

.page-home .version-update__frame {
  position: relative;
  border: 3px solid rgba(0,212,255,0.3);
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(0,212,255,0.08);
  background: var(--home-c-ink);
}

.page-home .version-update__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  filter: contrast(1.1) saturate(1.05);
}

.page-home .version-update__badge {
  position: absolute;
  top: 14px;
  left: 0;
  background: var(--home-c-accent);
  color: var(--home-c-ink);
  padding: 6px 18px 6px 14px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.page-home .version-update__badge-num {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.page-home .version-update__badge-label {
  font-family: var(--home-font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-home .version-update__tags {
  margin-top: 14px;
  text-align: right;
}

.page-home .version-update__content {
  flex: 1 1 58%;
  min-width: 0;
}

.page-home .version-update__lead {
  font-family: var(--home-font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(250,247,242,0.88);
  margin: 0 0 26px 0;
  border-bottom: 1px solid rgba(0,212,255,0.18);
  padding-bottom: 18px;
}

.page-home .version-update__points {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .version-update__point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(250,247,242,0.1);
  padding: 14px 16px;
  transition: border-color var(--home-ease);
}

.page-home .version-update__point:hover {
  border-color: rgba(0,212,255,0.4);
}

.page-home .version-update__point-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-c-accent);
  color: var(--home-c-ink);
  font-family: var(--home-font-heading);
  font-size: 1rem;
  font-weight: 700;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.page-home .version-update__point-body {
  min-width: 0;
}

.page-home .version-update__point-title {
  font-family: var(--home-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--home-c-cream);
  display: block;
  margin-bottom: 4px;
}

.page-home .version-update__point-desc {
  font-family: var(--home-font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.68);
  margin: 0;
}

.page-home .version-update__more {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== 5. 桌面端下载引导 ===== */
.page-home .download-orbit {
  position: relative;
  background: linear-gradient(120deg, var(--home-c-primary) 0%, var(--home-c-teal) 100%);
  overflow: hidden;
}

.page-home .download-orbit::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border: 3px solid rgba(0,212,255,0.2);
  transform: rotate(18deg);
}

.page-home .download-orbit::after {
  content: '';
  position: absolute;
  left: 12%;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255,106,0,0.25);
  transform: rotate(-24deg);
}

.page-home .download-orbit__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home .download-orbit__content {
  flex: 1 1 52%;
  min-width: 0;
}

.page-home .download-orbit__desc {
  font-family: var(--home-font-body);
  font-size: 0.96rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.82);
  margin: 0 0 20px 0;
  max-width: 33em;
}

.page-home .download-orbit__facts {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}

.page-home .download-orbit__facts li {
  font-family: var(--home-font-body);
  font-size: 0.88rem;
  color: rgba(250,247,242,0.85);
  padding: 7px 0 7px 26px;
  position: relative;
}

.page-home .download-orbit__facts li::before {
  content: '▸';
  position: absolute;
  left: 4px;
  color: var(--home-c-cyan);
  font-size: 1.05em;
}

.page-home .download-orbit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.page-home .download-orbit__link {
  font-family: var(--home-font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--home-c-cyan);
  text-decoration: none;
  border-bottom: 2px solid rgba(0,212,255,0.3);
  padding-bottom: 3px;
  transition: border-color var(--home-ease);
}

.page-home .download-orbit__link:hover,
.page-home .download-orbit__link:focus-visible {
  border-color: var(--home-c-cyan);
}

.page-home .download-orbit__visual {
  flex: 1 1 42%;
  min-width: 0;
  position: relative;
}

.page-home .download-orbit__frame {
  border: 3px solid rgba(250,247,242,0.22);
  background: var(--home-c-ink);
  box-shadow: 10px 10px 0 rgba(6,16,32,0.45);
  overflow: hidden;
  position: relative;
}

.page-home .download-orbit__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.page-home .download-orbit__window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(6,16,32,0.92);
  padding: 8px 12px;
}

.page-home .download-orbit__window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(170,180,192,0.4);
}

.page-home .download-orbit__window-dot:first-child {
  background: var(--home-c-accent);
}

.page-home .download-orbit__window-dot:nth-child(2) {
  background: rgba(255,106,0,0.5);
}

.page-home .download-orbit__window-dot:nth-child(3) {
  background: rgba(0,212,255,0.5);
}

.page-home .download-orbit__window-url {
  font-family: var(--home-font-mono);
  font-size: 0.68rem;
  color: var(--home-c-gray);
  margin-left: auto;
}

.page-home .download-orbit__version-tags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.page-home .download-orbit__version-tag {
  font-family: var(--home-font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(250,247,242,0.5);
  border: 2px solid rgba(250,247,242,0.25);
  padding: 4px 14px;
}

.page-home .download-orbit__version-tag--active {
  color: var(--home-c-ink);
  background: var(--home-c-accent);
  border-color: var(--home-c-accent);
  transform: translateY(-2px);
}

.page-home .download-orbit__version-divider {
  color: var(--home-c-cyan);
  font-family: var(--home-font-mono);
  font-size: 1.2rem;
}

/* ===== 6. 近期动态精选 ===== */
.page-home .recent-news {
  background: var(--home-c-primary);
}

.page-home .recent-news__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 28px;
}

.page-home .recent-news__more-link {
  font-family: var(--home-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--home-c-cyan);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(0,212,255,0.3);
  transition: border-color var(--home-ease);
}

.page-home .recent-news__more-link:hover,
.page-home .recent-news__more-link:focus-visible {
  border-color: var(--home-c-accent);
}

.page-home .recent-news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid rgba(250,247,242,0.14);
}

.page-home .recent-news__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 6px;
  border-bottom: 1px solid rgba(250,247,242,0.12);
  text-decoration: none;
  transition: background var(--home-ease), transform var(--home-ease);
}

.page-home .recent-news__item:hover,
.page-home .recent-news__item:focus-within {
  background: rgba(0,212,255,0.06);
  transform: translateX(4px);
}

.page-home .recent-news__item-tag {
  flex-shrink: 0;
  min-width: 74px;
  text-align: center;
}

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

.page-home .recent-news__item-title {
  font-family: var(--home-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 6px 0;
}

.page-home .recent-news__item-title a {
  color: var(--home-c-cream);
  text-decoration: none;
  transition: color var(--home-ease);
}

.page-home .recent-news__item-title a:hover,
.page-home .recent-news__item-title a:focus-visible {
  color: var(--home-c-cyan);
}

.page-home .recent-news__item-desc {
  font-family: var(--home-font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.65);
  margin: 0;
}

.page-home .recent-news__item-arrow {
  font-family: var(--home-font-mono);
  font-size: 1.3rem;
  color: var(--home-c-accent);
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--home-ease), transform var(--home-ease);
}

.page-home .recent-news__item:hover .recent-news__item-arrow,
.page-home .recent-news__item:focus-within .recent-news__item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== 响应式适配 ===== */
@media (min-width: 768px) {
  .page-home .my-section {
    padding: 92px 0;
  }

  .page-home .my-section-title {
    font-size: 2.8rem;
  }

  .page-home .status-board {
    padding: 80px 0 36px 0;
  }

  .page-home .status-board__inner {
    display: grid;
    grid-template-columns: minmax(0, 5.5fr) minmax(280px, 4.5fr);
    gap: 40px;
    align-items: end;
  }

  .page-home .status-board__left {
    padding-bottom: 20px;
  }

  .page-home .status-board__right {
    min-height: 340px;
  }

  .page-home .status-board__status-card {
    width: 250px;
    margin-right: 8%;
  }

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

  .page-home .version-update__layout {
    flex-direction: row;
    align-items: center;
  }

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

  .page-home .download-orbit__inner {
    flex-direction: row;
    align-items: center;
  }
}

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

  .page-home .status-board__inner {
    grid-template-columns: minmax(0, 6fr) minmax(320px, 5fr);
  }

  .page-home .status-board__title {
    font-size: 5rem;
  }
}

/* 滚动显现 */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.page-home [data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 键盘焦点可见 */
.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 3px solid var(--home-c-cyan);
  outline-offset: 3px;
}

.page-home {
  --reveal-delay: 0.3s;
}
