/* ==========================================================
   爱游戏中文官方 - 赛场焦点首页（page-home）
   全部选择器限定在 .page-home 作用域内
   ========================================================== */

.page-home {
  --home-gap: 18px;
  --home-gap-lg: 28px;
  background:
    radial-gradient(circle at 90% 4%, rgba(198, 255, 0, 0.05), transparent 26%),
    var(--c-blue-deep);
  color: var(--c-text);
  overflow-x: clip;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

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

.page-home a:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
}

/* ---------- 首屏声明 + 内容目录 ---------- */

.page-home .home-intro {
  position: relative;
  padding: calc(28px + env(safe-area-inset-top)) 0 72px;
  isolation: isolate;
}

.page-home .home-intro__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 255, 0, 0.1), transparent 30%),
    linear-gradient(120deg, var(--c-blue-deep) 0%, #0e2242 64%, #143052 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 54px), 0 100%);
}

.page-home .home-intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 42px;
  z-index: -1;
  background: linear-gradient(90deg, var(--c-orange), rgba(255, 122, 0, 0.24));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.55;
}

.page-home .home-intro .container {
  position: relative;
  z-index: 1;
}

.page-home .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.8rem;
  color: var(--c-muted);
}

.page-home .breadcrumb__link {
  color: var(--c-muted);
  transition: color 0.2s var(--ease);
}

.page-home .breadcrumb__link:hover {
  color: var(--c-green);
}

.page-home .breadcrumb__sep {
  opacity: 0.6;
}

.page-home .breadcrumb__current {
  color: var(--c-text);
}

.page-home .home-intro__grid {
  display: grid;
  gap: var(--home-gap-lg);
}

@media (min-width: 820px) {
  .page-home .home-intro__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: end;
    gap: 56px;
  }
}

.page-home .home-intro__copy {
  max-width: 760px;
}

.page-home .home-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px 6px 8px;
  font: 700 0.72rem/1 var(--font-data);
  letter-spacing: 0.16em;
  color: var(--c-green);
  border: 1px solid rgba(198, 255, 0, 0.35);
  background: rgba(198, 255, 0, 0.06);
  border-radius: 999px;
  text-transform: uppercase;
}

.page-home .home-intro__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
}

.page-home .home-intro h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .home-intro__lead {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.75;
  color: var(--c-muted);
}

.page-home .home-intro__lead b {
  color: var(--c-text);
  font-weight: 700;
}

.page-home .home-intro__index {
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(18, 42, 74, 0.82), rgba(18, 42, 74, 0.55));
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-orange);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.page-home .home-intro__index-title {
  margin: 0 0 14px;
  font: 700 0.78rem/1 var(--font-data);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
}

.page-home .home-intro__index-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-intro__index-list li + li {
  margin-top: 4px;
}

.page-home .home-intro__index-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 8px;
  color: var(--c-text);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .home-intro__index-list a:hover {
  background: rgba(255, 122, 0, 0.12);
  transform: translateX(4px);
}

.page-home .home-intro__index-num {
  min-width: 22px;
  font: 700 0.78rem/1 var(--font-data);
  color: var(--c-orange);
}

/* ---------- 数据概览 ---------- */

.page-home .home-stats {
  padding: 30px 0;
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.22) 50%, transparent) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.22) 50%, transparent) 0 100% / 100% 1px no-repeat,
    var(--c-blue-outer);
}

.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

@media (min-width: 780px) {
  .page-home .home-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .home-stats__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 4px;
}

.page-home .home-stats__num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  line-height: 1;
  color: var(--c-text);
}

.page-home .home-stats__num small {
  margin-left: 4px;
  font-size: 0.62em;
  color: var(--c-green);
}

.page-home .home-stats__label {
  font-size: 0.86rem;
  color: var(--c-muted);
}

/* ---------- 通用区块 ---------- */

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

.page-home .section-head {
  margin-bottom: 26px;
}

.page-home .section-head__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 0.72rem/1 var(--font-data);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-home .section-head__tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--c-orange);
  transform: skewX(-24deg);
}

.page-home .section-head__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--c-text);
}

.page-home .home-section__desc {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ---------- 战报速递 ---------- */

.page-home .report-grid {
  display: grid;
  gap: var(--home-gap);
}

@media (min-width: 900px) {
  .page-home .report-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: var(--home-gap-lg);
  }
}

.page-home .report-card {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-home .report-card--featured {
  display: flex;
  flex-direction: column;
}

.page-home .report-card__main {
  display: grid;
  flex: 1;
  min-width: 0;
  color: inherit;
}

@media (min-width: 700px) {
  .page-home .report-card__main {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.page-home .report-card__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  background: var(--c-card);
}

@media (min-width: 700px) {
  .page-home .report-card__visual {
    padding-bottom: 0;
    min-height: 100%;
  }
}

.page-home .report-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .report-card__live {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px 4px 14px;
  background: var(--c-orange);
  color: #fff;
  font: 700 0.72rem/1 var(--font-data);
  letter-spacing: 0.1em;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  animation: ph-live-pulse 1.6s infinite alternate;
}

@keyframes ph-live-pulse {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0.6;
    transform: translateX(2px);
  }
}

.page-home .report-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px 20px;
}

.page-home .report-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.page-home .update-tag {
  display: inline-block;
  padding: 4px 10px;
  font: 700 0.72rem/1 var(--font-data);
  color: var(--c-orange);
  background: rgba(255, 122, 0, 0.14);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .update-tag.is-amber {
  color: var(--c-amber);
  background: rgba(255, 180, 0, 0.16);
}

.page-home .report-card__round {
  font: 600 0.8rem/1 var(--font-data);
  color: var(--c-muted);
}

.page-home .report-card__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  line-height: 1.3;
  color: var(--c-text);
}

.page-home .report-card__body p {
  margin: 0 0 18px;
  color: var(--c-muted);
  line-height: 1.7;
}

.page-home .report-card__scorebar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--c-line);
}

.page-home .report-card__team {
  flex: 1;
  font-size: 0.84rem;
  color: var(--c-muted);
}

.page-home .report-card__score {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--c-text);
}

.page-home .report-card__score i {
  font-style: normal;
  color: var(--c-orange);
  animation: ph-dot-pulse 1.1s ease-in-out infinite;
}

@keyframes ph-dot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.page-home .report-card__insight {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--c-line);
  background: rgba(13, 27, 42, 0.4);
}

.page-home .report-card__insight img {
  flex: none;
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 700px) {
  .page-home .report-card__insight img {
    width: 110px;
    height: 83px;
  }
}

.page-home .report-card__insight-text {
  min-width: 0;
}

.page-home .report-card__insight-label {
  display: inline-block;
  margin-bottom: 4px;
  font: 700 0.7rem/1 var(--font-data);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
}

.page-home .report-card__insight-text p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--c-muted);
}

.page-home .report-grid__side {
  display: flex;
  flex-direction: column;
  gap: var(--home-gap);
}

.page-home .mini-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 16px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.page-home .mini-card:hover {
  border-color: rgba(198, 255, 0, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

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

.page-home .mini-card__league {
  font: 700 0.72rem/1 var(--font-data);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.page-home .mini-card__status {
  padding: 4px 8px;
  font: 600 0.7rem/1 var(--font-data);
  color: var(--c-muted);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.page-home .mini-card__status.is-live {
  color: var(--c-green);
  background: rgba(198, 255, 0, 0.1);
  animation: ph-live-pulse 1.5s infinite alternate;
}

.page-home .mini-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.4;
}

.page-home .mini-card h3 a {
  color: var(--c-text);
  transition: color 0.2s var(--ease);
}

.page-home .mini-card h3 a:hover {
  color: var(--c-orange);
}

.page-home .mini-card p {
  margin: 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .mini-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--c-line);
}

.page-home .data-strong {
  font-family: var(--font-data);
  font-weight: 700;
}

.page-home .mini-card__foot .data-strong {
  font-size: 1.32rem;
  color: var(--c-text);
}

.page-home .mini-card__foot a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-orange);
  transition: color 0.2s var(--ease);
}

.page-home .mini-card__foot a:hover {
  color: var(--c-green);
}

.page-home .report-more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: var(--home-gap-lg);
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(18, 42, 74, 0.2));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
}

.page-home .report-more p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-muted);
}

.page-home .report-more__link {
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--c-orange);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .report-more__link:hover {
  color: var(--c-green);
  transform: translateX(2px);
}

/* ---------- 赛程调整提醒 ---------- */

.page-home .home-section--updates {
  background:
    radial-gradient(circle at 95% 100%, rgba(255, 180, 0, 0.1), transparent 30%),
    rgba(13, 27, 42, 0.72);
}

.page-home .updates-grid {
  display: grid;
  gap: var(--home-gap-lg);
}

@media (min-width: 860px) {
  .page-home .updates-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 44px;
  }
}

.page-home .update-alert {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 180, 0, 0.12), rgba(18, 42, 74, 0.35));
  border: 1px solid rgba(255, 180, 0, 0.4);
  border-top: 3px solid var(--c-amber);
  border-radius: var(--radius-lg);
}

.page-home .update-alert::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.16), transparent 70%);
}

.page-home .update-alert h3 {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.28rem;
  line-height: 1.4;
  color: var(--c-text);
}

.page-home .update-alert p {
  margin: 0 0 18px;
  color: var(--c-muted);
  line-height: 1.7;
}

.page-home .update-alert a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--c-amber);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.page-home .update-alert a:hover {
  color: var(--c-text);
  gap: 10px;
}

.page-home .update-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .update-timeline__item {
  position: relative;
  padding: 0 0 24px 24px;
}

.page-home .update-timeline__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: -8px;
  width: 1px;
  background: var(--c-line);
}

.page-home .update-timeline__item:last-child::after {
  display: none;
}

.page-home .update-timeline__dot {
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.15);
}

.page-home .update-timeline__label {
  margin: 0 0 4px;
  font: 700 0.78rem/1.4 var(--font-data);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-green);
}

.page-home .update-timeline__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-muted);
}

/* ---------- 平板观赛入口 ---------- */

.page-home .home-section--apps {
  background: linear-gradient(180deg, transparent, rgba(18, 42, 74, 0.55));
}

.page-home .apps-showcase {
  display: grid;
  gap: var(--home-gap-lg);
}

@media (min-width: 840px) {
  .page-home .apps-showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 48px;
  }
}

.page-home .apps-showcase__visual {
  position: relative;
}

.page-home .apps-showcase__frame {
  overflow: hidden;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transform: rotate(-1.4deg);
}

.page-home .apps-showcase__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .apps-showcase__chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 6px 12px;
  background: var(--c-green);
  color: var(--c-blue-deep);
  font: 700 0.76rem/1 var(--font-data);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-home .apps-showcase__content h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  line-height: 1.35;
  color: var(--c-text);
}

.page-home .apps-showcase__content > p {
  margin: 0 0 18px;
  color: var(--c-muted);
  line-height: 1.75;
}

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

@media (min-width: 640px) {
  .page-home .apps-feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.page-home .apps-feature-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: rgba(18, 42, 74, 0.55);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-orange);
  border-radius: var(--radius-md);
}

.page-home .apps-feature-list li span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-green);
}

.page-home .apps-feature-list li p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .apps-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--c-orange);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .apps-showcase__link:hover {
  background: #d96600;
  transform: translateY(-2px);
}

/* ---------- 新用户三步订阅 ---------- */

.page-home .home-section--subscribe {
  background:
    linear-gradient(90deg, transparent, rgba(198, 255, 0, 0.1), transparent) 0 0 / 100% 1px no-repeat,
    var(--c-blue-deep);
}

.page-home .subscribe-grid {
  display: grid;
  gap: var(--home-gap-lg);
}

@media (min-width: 840px) {
  .page-home .subscribe-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 52px;
  }
}

.page-home .subscribe-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .subscribe-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-line);
}

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

.page-home .subscribe-step__num {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.4);
  color: var(--c-orange);
  font: 700 0.9rem/1 var(--font-data);
}

.page-home .subscribe-step__body h3 {
  margin: 2px 0 6px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--c-text);
}

.page-home .subscribe-step__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .subscribe-visual {
  position: relative;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(18, 42, 74, 0.2));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-xl);
  transform: rotate(1deg);
}

.page-home .subscribe-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}

.page-home .subscribe-visual__note {
  margin: 16px 0 0;
  text-align: center;
  font: 600 0.8rem/1 var(--font-data);
  color: var(--c-green);
}

/* ---------- 品牌信任与快速入口 ---------- */

.page-home .home-extra {
  padding-bottom: 60px;
}

.page-home .home-extra__grid {
  display: grid;
  gap: var(--home-gap);
}

@media (min-width: 780px) {
  .page-home .home-extra__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.page-home .home-extra__card {
  padding: 26px;
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
}

.page-home .home-extra__card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.24rem;
  color: var(--c-text);
}

.page-home .home-extra__trust p {
  margin: 0 0 18px;
  color: var(--c-muted);
  line-height: 1.75;
}

.page-home .home-extra__trust a {
  color: var(--c-orange);
  font-weight: 700;
}

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

.page-home .home-extra__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(13, 27, 42, 0.5);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  color: var(--c-muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.page-home .home-extra__links a:hover {
  color: var(--c-text);
  border-color: rgba(198, 255, 0, 0.5);
  transform: translateX(4px);
}

/* ---------- 降级与无障碍 ---------- */

@media (prefers-reduced-motion: reduce) {
  .page-home .report-card__live,
  .page-home .report-card__score i,
  .page-home .mini-card__status.is-live {
    animation: none;
  }

  .page-home .report-card__main,
  .page-home .apps-showcase__frame,
  .page-home .subscribe-visual {
    transform: none;
  }
}
