.page-home {
  --home-gap: 1.25rem;
  --home-section-pad: clamp(2rem, 5vw, 4rem);
  --home-card-radius: calc(var(--radius) + 4px);
  position: relative;
  background-color: var(--bg-main);
  background-image:
    radial-gradient(1100px 480px at 85% -5%, rgba(157, 0, 255, 0.1), transparent 60%),
    radial-gradient(800px 420px at 8% 32%, rgba(0, 240, 255, 0.06), transparent 55%);
  overflow-x: clip;
  color: var(--text-main);
  font-family: var(--font-body);
}

.page-home .home-container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

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

.page-home a:focus-visible,
.page-home .home-console-card:focus-visible,
.page-home .home-news-card:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 3px;
}

/* ---------- Magazine 首屏 ---------- */
.page-home .home-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 70% 20%, #000 0%, transparent 75%);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--grad-progress);
  opacity: 0.4;
}

.page-home .home-hero__inner {
  position: relative;
  display: grid;
  gap: 2rem;
}

.page-home .home-eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.page-home .home-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #F9FAFB 0%, #E5E7EB 55%, rgba(0, 240, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(0, 240, 255, 0.18);
}

.page-home .home-hero__lead {
  margin: 0 0 1rem;
  max-width: 46ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home .home-hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.page-home .home-hero__note-icon {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.1);
}

.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 0 0 1.4rem;
}

.page-home .home-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-home .home-hero__meta-item::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: var(--grad-main);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}

.page-home .home-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.3rem;
}

.page-home .home-hero__links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-hero__links a:hover {
  color: var(--neon-blue);
  border-bottom-color: var(--neon-blue);
}

.page-home .home-hero__index {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-home .home-hero__index-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  row-gap: 0.1rem;
  padding: 1.15rem 1.3rem 1.3rem;
  text-decoration: none;
  background: linear-gradient(145deg, #111827, #0F172A);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-hero__index-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 18px solid rgba(0, 240, 255, 0.14);
  border-left: 18px solid transparent;
  transition: border-bottom-color 0.25s ease;
}

.page-home .home-hero__index-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.12);
}

.page-home .home-hero__index-card--gold {
  border-color: rgba(255, 215, 0, 0.25);
}

.page-home .home-hero__index-card--gold::after {
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

.page-home .home-hero__index-card--gold:hover {
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.page-home .home-hero__index-num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--neon-blue);
}

.page-home .home-hero__index-card--gold .home-hero__index-num {
  color: var(--gold);
}

.page-home .home-hero__index-title {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.page-home .home-hero__index-desc {
  grid-column: 2;
  grid-row: 2;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.page-home .home-hero__index-arrow {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-home .home-hero__index-badge {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  letter-spacing: 0.06em;
}

/* ---------- 双入口控制台 ---------- */
.page-home .home-console {
  padding: var(--home-section-pad) 0;
}

.page-home .home-console__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.page-home .home-console__head h2,
.page-home .home-stats__head h2,
.page-home .home-update__main h2,
.page-home .home-news__head h2,
.page-home .home-feedback__banner h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.page-home .home-console__hint,
.page-home .home-stats__hint {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.page-home .home-console-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  overflow: hidden;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--home-card-radius);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.page-home .home-console-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 0;
  height: 0;
  border-bottom: 32px solid rgba(0, 240, 255, 0.16);
  border-left: 32px solid transparent;
  pointer-events: none;
}

.page-home .home-console-card--im2026::after {
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

.page-home .home-console-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(0, 240, 255, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 240, 255, 0.08);
}

.page-home .home-console-card--im2026:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42), 0 0 40px rgba(255, 215, 0, 0.08);
}

.page-home .home-console-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-console-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(1.15);
}

.page-home .home-console-card--im2026 .home-console-card__img {
  opacity: 0.4;
}

.page-home .home-console-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0B0E14 28%, rgba(11, 14, 20, 0.12) 72%, rgba(11, 14, 20, 0.65) 100%);
}

.page-home .home-console-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem;
}

.page-home .home-console-card__label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-blue);
  border: 1px solid rgba(0, 240, 255, 0.4);
  background: rgba(0, 240, 255, 0.08);
  padding: 0.28rem 0.68rem;
  border-radius: 999px;
}

.page-home .home-console-card__label--gold {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.08);
}

.page-home .home-console-card__title {
  margin: 0.65rem 0 0.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  color: var(--text-main);
}

.page-home .home-console-card__desc {
  margin: 0 0 1rem;
  max-width: 42ch;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .home-console-card__badge-gold {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.55);
  background: rgba(11, 14, 20, 0.65);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  transform: rotate(2deg);
}

/* ---------- 数据统计栏 ---------- */
.page-home .home-stats {
  padding: 0 0 var(--home-section-pad);
}

.page-home .home-stats__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #111827, #0E1420);
  border: 1px solid var(--border-soft);
  border-radius: var(--home-card-radius);
  box-shadow: var(--shadow-glow);
}

.page-home .home-stats__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 1.5rem 1.5rem 0;
}

.page-home .home-stats__body {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.page-home .home-stats__chart-panel {
  position: relative;
  min-height: 210px;
  border: 1px solid rgba(0, 240, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(11, 14, 20, 0.7);
}

.page-home .home-stats__chart-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.page-home .home-stats__chart-head {
  position: absolute;
  top: 0.8rem;
  left: 0.95rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.page-home .home-stats__chart-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
}

.page-home .home-stats__chart-axis {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.page-home .home-stats__svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.page-home .home-stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.page-home .home-stats__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 0.45rem 0.7rem;
  padding: 0.6rem 0.7rem;
  background: rgba(17, 24, 39, 0.55);
  border-left: 2px solid transparent;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .home-stats__row:hover {
  background: rgba(17, 24, 39, 0.95);
  border-left-color: var(--neon-blue);
  transform: translateX(4px);
}

.page-home .home-stats__row--win {
  border-left-color: rgba(0, 240, 255, 0.4);
}

.page-home .home-stats__row--lose {
  border-left-color: rgba(157, 0, 255, 0.45);
}

.page-home .home-stats__row-index {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.page-home .home-stats__row-teams {
  font-size: 0.85rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-stats__row-teams i {
  font-style: normal;
  font-size: 0.75em;
  color: var(--text-muted);
  margin: 0 0.2em;
}

.page-home .home-stats__row-score {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.page-home .home-stats__row-result {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
  padding: 0.14rem 0.5rem;
}

.page-home .home-stats__row-result--win {
  color: var(--neon-blue);
  background: rgba(0, 240, 255, 0.1);
}

.page-home .home-stats__row-result--lose {
  color: var(--danger);
  background: rgba(255, 59, 59, 0.1);
}

.page-home .home-stats__row-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

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

.page-home .home-stats__row-link b {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--gold);
}

.page-home .home-stats__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.9rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(0, 240, 255, 0.08);
}

.page-home .home-stats__foot-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-home .home-stats__foot-link {
  font-size: 0.82rem;
  color: var(--neon-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

.page-home .home-stats__foot-link:hover {
  border-bottom-color: var(--neon-blue);
}

/* ---------- 档案更新提示 ---------- */
.page-home .home-update {
  padding: 0 0 var(--home-section-pad);
}

.page-home .home-update__card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.06), transparent 42%), var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--home-card-radius);
}

.page-home .home-update__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-main);
  opacity: 0.5;
}

.page-home .home-update__main {
  display: grid;
  align-content: center;
}

.page-home .home-update__desc {
  margin: 1rem 0 1.1rem;
  max-width: 56ch;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home .home-update__points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.page-home .home-update__points li {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.page-home .home-update__points li::before {
  content: "◈";
  color: var(--neon-purple);
  font-size: 0.72rem;
}

.page-home .home-update__preview {
  display: grid;
  gap: 1rem;
}

.page-home .home-update__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}

.page-home .home-update__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(0, 240, 255, 0.25);
}

.page-home .home-update__tl-item {
  position: relative;
  padding: 0 0 0.9rem 1.1rem;
}

.page-home .home-update__tl-item:last-child {
  padding-bottom: 0;
}

.page-home .home-update__tl-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.32rem;
  width: 7px;
  height: 7px;
  background: var(--grad-main);
  transform: rotate(45deg);
}

.page-home .home-update__tl-week {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--gold);
}

.page-home .home-update__tl-text {
  display: block;
  font-size: 0.88rem;
  color: var(--text-main);
}

/* ---------- 最新专题动态 ---------- */
.page-home .home-news {
  padding: 0 0 var(--home-section-pad);
}

.page-home .home-news__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

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

.page-home .home-news-card {
  position: relative;
  display: block;
  padding: 1.35rem 1.4rem 1.5rem;
  text-decoration: none;
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: var(--home-card-radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.page-home .home-news-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-main);
  opacity: 0;
  transition: opacity 0.25s ease, width 0.25s ease;
}

.page-home .home-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.35);
  background: rgba(17, 24, 39, 1);
}

.page-home .home-news-card:hover::after {
  opacity: 1;
  width: 84px;
}

.page-home .home-news-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-blue);
  border: 1px solid rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.05);
  padding: 0.22rem 0.6rem;
  border-radius: 3px;
}

.page-home .home-news-card:nth-child(even) .home-news-card__tag {
  color: var(--neon-purple);
  border-color: rgba(157, 0, 255, 0.3);
  background: rgba(157, 0, 255, 0.06);
}

.page-home .home-news-card__title {
  margin: 0.8rem 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-main);
}

.page-home .home-news-card__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- 问题反馈横幅 ---------- */
.page-home .home-feedback {
  padding: 0 0 2.5rem;
}

.page-home .home-feedback__banner {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(115deg, rgba(157, 0, 255, 0.1) 0%, rgba(17, 24, 39, 0.92) 45%, rgba(0, 240, 255, 0.07) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--home-card-radius);
  overflow: hidden;
}

.page-home .home-feedback__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-main);
}

.page-home .home-feedback__desc {
  margin: 0.75rem 0 0;
  max-width: 58ch;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home .home-feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- 断点 ---------- */
@media (min-width: 480px) {
  .page-home .home-update__preview {
    grid-template-columns: 200px 1fr;
  }

  .page-home .home-update__img {
    height: 100%;
    aspect-ratio: auto;
  }
}

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

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 2.5rem;
  }

  .page-home .home-hero__title {
    font-size: clamp(3rem, 5.5vw, 5rem);
  }

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

  .page-home .home-console-card {
    min-height: 380px;
  }

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

@media (min-width: 900px) {
  .page-home .home-stats__body {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .page-home .home-stats__chart-panel {
    min-height: 100%;
  }

  .page-home .home-update__card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .page-home .home-update__preview {
    grid-template-columns: 240px 1fr;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    background-attachment: fixed;
  }

  .page-home .home-feedback__banner {
    grid-template-columns: 1fr auto;
  }

  .page-home .home-stats__row {
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    padding: 0.65rem 0.8rem;
  }
}
