/* ===== 竞猜网址 首页专属样式 ===== */
.page-home {
  color: var(--kx-text);
  background: var(--kx-bg);
  font-family: var(--kx-font-body);
  overflow-x: hidden;
}

.page-home .home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-family: var(--kx-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--kx-accent);
  text-transform: uppercase;
}

.page-home .home-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--kx-accent);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.5);
}

/* ===== 首屏框景 ===== */
.page-home .home-frame {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--kx-bg);
  border-bottom: 3px solid var(--kx-accent);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
  margin-bottom: 0;
}

.page-home .home-frame__grid,
.page-home .home-dashboard__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.page-home .home-frame__grid::after,
.page-home .home-dashboard__grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0) 60%);
}

.page-home .home-frame__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: var(--kx-container-wide);
  margin: 0 auto;
  padding: 120px var(--kx-gutter) 90px;
}

/* 左侧窄栏 */
.page-home .home-frame__rail {
  display: none;
}

/* 主内容 */
.page-home .home-frame__main {
  padding: 0;
}

.page-home .home-title {
  margin: 0;
  font-family: var(--kx-font-display);
  font-size: clamp(48px, 10vw, 104px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--kx-text);
  text-shadow: 4px 4px 0 var(--kx-purple);
  text-transform: uppercase;
  word-break: break-word;
}

.page-home .home-lede {
  margin: 26px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--kx-text-dim);
  border-left: 3px solid var(--kx-accent);
  padding-left: 18px;
}

.page-home .home-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-home .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-family: var(--kx-font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  cursor: pointer;
}

.page-home .home-btn--accent {
  background: var(--kx-accent);
  color: #0A0A0A;
  border: 2px solid var(--kx-accent);
  box-shadow: var(--kx-shadow-hard);
}

.page-home .home-btn--accent:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(57, 255, 20, 0.25);
  background: #54ff30;
}

.page-home .home-btn--ghost {
  background: transparent;
  color: var(--kx-text);
  border: 2px solid var(--kx-text);
}

.page-home .home-btn--ghost:hover {
  background: var(--kx-text);
  color: var(--kx-bg);
  border-color: var(--kx-text);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

/* 首屏数据统计 */
.page-home .home-frame__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 560px;
}

.page-home .home-frame__stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(26, 26, 26, 0.8);
  padding: 18px 16px;
  position: relative;
  transition: border-color 200ms ease;
}

.page-home .home-frame__stat:hover {
  border-color: var(--kx-accent);
}

.page-home .home-frame__stat-num {
  display: block;
  font-family: var(--kx-font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--kx-text);
  letter-spacing: 0.02em;
}

.page-home .home-frame__stat-num span {
  font-size: 18px;
  margin-left: 2px;
  color: var(--kx-accent);
}

.page-home .home-frame__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--kx-text-dim);
}

/* 首屏旁注 */
.page-home .home-frame__side-note {
  display: none;
}

/* 斜切角装饰 */
.page-home .home-frame__corner {
  position: absolute;
  width: 44px;
  height: 44px;
  z-index: 2;
  pointer-events: none;
}

.page-home .home-frame__corner--tl {
  top: 0;
  left: 0;
  border-top: 3px solid var(--kx-accent-2);
  border-left: 3px solid var(--kx-accent-2);
}

.page-home .home-frame__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid var(--kx-accent-2);
  border-right: 3px solid var(--kx-accent-2);
}

/* ===== 区块通用头 ===== */
.page-home .home-section {
  position: relative;
  padding: 64px var(--kx-gutter) 56px;
  max-width: var(--kx-container-wide);
  margin: 0 auto;
}

.page-home .home-section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

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

.page-home .home-section__title {
  margin: 0;
  font-family: var(--kx-font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  color: var(--kx-text);
  text-transform: uppercase;
}

.page-home .home-section__note {
  margin: 0;
  font-size: 13px;
  color: var(--kx-text-dim);
  max-width: 420px;
}

/* ===== 实时数据看板 ===== */
.page-home .home-dashboard {
  padding: 72px var(--kx-gutter) 72px;
}

.page-home .home-dashboard__board {
  position: relative;
  background: var(--kx-surface);
  border: 2px solid var(--kx-text);
  box-shadow: var(--kx-shadow-hard);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.page-home .home-dashboard__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.page-home .home-dashboard__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.6) saturate(1.4) contrast(1.2) brightness(0.45);
  mix-blend-mode: luminosity;
}

.page-home .home-dashboard__grid {
  z-index: 0;
  opacity: 0.5;
}

/* 主赛事卡片 */
.page-home .home-match-card {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  background: rgba(10, 10, 10, 0.92);
  border-right: 3px solid var(--kx-accent-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .home-match-card--primary {
  grid-row: auto;
}

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

.page-home .home-match-card__tag {
  display: inline-block;
  background: var(--kx-accent);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.page-home .home-match-card__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--kx-accent-2);
  letter-spacing: 0.06em;
}

.page-home .home-match-card__live i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kx-accent-2);
  box-shadow: 0 0 8px var(--kx-accent-2);
  animation: home-pulse 1.2s infinite alternate;
}

@keyframes home-pulse {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.page-home .home-match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.page-home .home-match-card__team {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .home-match-card__team:last-child {
  text-align: right;
  align-items: flex-end;
}

.page-home .home-match-card__team-name {
  font-family: var(--kx-font-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--kx-text);
}

.page-home .home-match-card__team-short {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--kx-text-faint);
}

.page-home .home-match-card__score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 44px;
  font-family: var(--kx-font-display);
  color: var(--kx-text);
}

.page-home .home-match-card__score strong {
  font-weight: 400;
  color: var(--kx-accent);
  text-shadow: 0 0 16px rgba(57, 255, 20, 0.3);
}

.page-home .home-match-card__score span {
  color: var(--kx-text-faint);
  font-size: 28px;
}

/* 数据条 */
.page-home .home-match-card__stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.page-home .home-match-card__stats div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.page-home .home-match-card__stats dt {
  color: var(--kx-text-dim);
}

.page-home .home-match-card__stats dd {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--kx-text);
  position: relative;
}

.page-home .home-match-card__stats i {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--kx-surface-2);
  position: relative;
  overflow: hidden;
}

.page-home .home-match-card__stats i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--w);
  background: var(--kx-accent);
}

.page-home .home-match-card__foot {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  font-size: 11px;
  color: var(--kx-text-faint);
}

/* 侧栏卡片区 */
.page-home .home-dashboard__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.88);
  position: relative;
  z-index: 1;
}

/* 排名卡 */
.page-home .home-rank-card,
.page-home .home-chart-card {
  background: var(--kx-surface-3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 200ms ease;
}

.page-home .home-rank-card:hover,
.page-home .home-chart-card:hover {
  border-color: var(--kx-accent-2);
}

.page-home .home-rank-card header,
.page-home .home-chart-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.page-home .home-rank-card h3,
.page-home .home-chart-card h3 {
  margin: 0;
  font-size: 16px;
  font-family: var(--kx-font-display);
  color: var(--kx-text);
  letter-spacing: 0.03em;
}

.page-home .home-rank-card header span,
.page-home .home-chart-card header span {
  font-size: 11px;
  color: var(--kx-text-faint);
  letter-spacing: 0.05em;
}

.page-home .home-rank-card__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.page-home .home-rank-card__table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--kx-text-faint);
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-rank-card__table td {
  padding: 7px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--kx-text);
  text-align: left;
}

.page-home .home-rank-card__table td:first-child {
  color: var(--kx-text-faint);
  font-weight: 600;
}

.page-home .home-rank-card__table td:nth-child(3) {
  font-weight: 700;
  color: var(--kx-accent-2);
}

.page-home .home-rank-card__table tbody tr {
  transition: background 200ms ease;
}

.page-home .home-rank-card__table tbody tr:hover {
  background: rgba(0, 255, 255, 0.05);
}

.page-home .home-rank-card__table .is-up { color: var(--kx-accent); }
.page-home .home-rank-card__table .is-down { color: var(--kx-warning); }
.page-home .home-rank-card__table .is-flat { color: var(--kx-text-faint); }

.page-home .home-rank-card__foot,
.page-home .home-chart-card footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--kx-text-faint);
}

.page-home .home-rank-card__foot a,
.page-home .home-chart-card footer a {
  color: var(--kx-accent-2);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}

.page-home .home-rank-card__foot a:hover,
.page-home .home-chart-card footer a:hover {
  border-bottom-color: var(--kx-accent-2);
}

/* 控球率折线图 */
.page-home .home-chart-card__chart {
  position: relative;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.page-home .home-chart-card__chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .home-chart-card__grid line {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.page-home .home-chart-card__area {
  fill: rgba(57, 255, 20, 0.08);
}

.page-home .home-chart-card__line--home {
  fill: none;
  stroke: var(--kx-accent);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.5));
}

.page-home .home-chart-card__line--away {
  fill: none;
  stroke: var(--kx-accent-2);
  stroke-width: 2;
  stroke-dasharray: 5 3;
  filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.4));
}

.page-home .home-chart-card__dot--home {
  fill: var(--kx-accent);
  stroke: var(--kx-bg);
  stroke-width: 1.5;
}

.page-home .home-chart-card__dot--away {
  fill: var(--kx-accent-2);
  stroke: var(--kx-bg);
  stroke-width: 1.5;
}

.page-home .home-chart-card__legend {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--kx-text-dim);
}

.page-home .home-chart-card__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .home-chart-card__legend i {
  display: inline-block;
  width: 14px;
  height: 3px;
}

.page-home .home-chart-card__legend .is-home { background: var(--kx-accent); }
.page-home .home-chart-card__legend .is-away { background: var(--kx-accent-2); }

/* ===== 焕新版赛季更新 ===== */
.page-home .home-version {
  padding-top: 72px;
  padding-bottom: 72px;
}

.page-home .home-version__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-version__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: version-step;
}

.page-home .home-version__timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .home-version__timeline li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .home-version__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--kx-surface-2);
  color: var(--kx-accent);
  font-family: var(--kx-font-display);
  font-size: 18px;
  border: 2px solid var(--kx-accent);
  box-shadow: 4px 4px 0 rgba(57, 255, 20, 0.2);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.page-home .home-version__timeline li:hover .home-version__step {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(57, 255, 20, 0.4);
}

.page-home .home-version__timeline h3 {
  margin: 0 0 8px;
  font-family: var(--kx-font-display);
  font-size: 22px;
  color: var(--kx-text);
  letter-spacing: 0.02em;
}

.page-home .home-version__timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--kx-text-dim);
  max-width: 360px;
}

.page-home .home-version__aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-version__log {
  background: var(--kx-surface);
  border: 2px solid var(--kx-text);
  box-shadow: var(--kx-shadow-hard);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.page-home .home-version__log::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(106, 13, 173, 0.25) 0%, transparent 75%);
  pointer-events: none;
}

.page-home .home-version__log-tag {
  display: inline-block;
  background: var(--kx-purple);
  color: var(--kx-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.page-home .home-version__log h3 {
  margin: 0 0 16px;
  font-family: var(--kx-font-display);
  font-size: 24px;
  color: var(--kx-text);
}

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

.page-home .home-version__log li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--kx-text-dim);
}

.page-home .home-version__log li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--kx-accent-2);
  transform: rotate(45deg);
}

.page-home .home-version__log-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid var(--kx-accent);
  color: var(--kx-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background 200ms ease, color 200ms ease;
}

.page-home .home-version__log-link:hover {
  background: var(--kx-accent);
  color: var(--kx-bg);
}

.page-home .home-version__ed-note {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  color: var(--kx-text-faint);
  border-left: 3px solid var(--kx-purple);
  padding-left: 14px;
}

/* ===== 快速入口区 ===== */
.page-home .home-entry {
  padding-top: 72px;
  padding-bottom: 72px;
}

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

.page-home .home-entry__card {
  background: var(--kx-surface);
  border: 2px solid rgba(255, 255, 255, 0.14);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  position: relative;
}

.page-home .home-entry__card:hover {
  border-color: var(--kx-accent);
  box-shadow: var(--kx-shadow-accent);
  transform: translateY(-3px);
}

.page-home .home-entry__card--wide {
  background: linear-gradient(135deg, var(--kx-surface) 0%, var(--kx-surface-3) 100%);
}

.page-home .home-entry__thumb {
  overflow: hidden;
  position: relative;
  min-height: 200px;
}

.page-home .home-entry__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.1);
  transition: transform 300ms ease;
}

.page-home .home-entry__card:hover .home-entry__thumb img {
  transform: scale(1.03);
}

.page-home .home-entry__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-entry__index {
  font-family: var(--kx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--kx-accent-2);
}

.page-home .home-entry__body h3 {
  margin: 0;
  font-family: var(--kx-font-display);
  font-size: 24px;
  line-height: 1.2;
  color: var(--kx-text);
  text-transform: uppercase;
}

.page-home .home-entry__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--kx-text-dim);
}

.page-home .home-entry__meta {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-entry__meta li {
  display: inline-block;
  background: var(--kx-surface-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--kx-text);
  letter-spacing: 0.04em;
}

.page-home .home-entry__meta li:nth-child(even) {
  border-color: rgba(0, 255, 255, 0.25);
  color: var(--kx-accent-2);
}

.page-home .home-entry__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--kx-accent);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 200ms ease, gap 200ms ease;
  align-self: flex-start;
}

.page-home .home-entry__link:hover {
  border-bottom-color: var(--kx-accent);
  gap: 10px;
}

.page-home .home-entry__doc-thumb {
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 180px;
}

.page-home .home-entry__doc-thumb img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(0.4) contrast(1.05);
}

.page-home .home-entry__bottom-note {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(106, 13, 173, 0.12);
  padding: 14px 18px;
}

.page-home .home-entry__bottom-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--kx-text-dim);
}

/* ===== 最新战报列表 ===== */
.page-home .home-news {
  padding-top: 72px;
  padding-bottom: 88px;
}

.page-home .home-news__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-home .home-news__feed {
  display: grid;
  gap: 0;
  border-top: 2px solid var(--kx-text);
  border-bottom: 2px solid var(--kx-text);
}

.page-home .home-news__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px 14px;
  padding: 18px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 200ms ease;
  position: relative;
}

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

.page-home .home-news__item:hover {
  background: rgba(0, 255, 255, 0.04);
}

.page-home .home-news__icon {
  grid-row: span 2;
}

.page-home .home-news__icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: contrast(1.1);
}

.page-home .home-news__time {
  grid-column: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kx-accent);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.page-home .home-news__main {
  grid-column: 2;
}

.page-home .home-news__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.page-home .home-tag {
  display: inline-block;
  background: var(--kx-surface-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--kx-text-dim);
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.page-home .home-news__main h3 {
  margin: 0 0 6px;
  font-family: var(--kx-font-display);
  font-size: 20px;
  color: var(--kx-text);
  letter-spacing: 0.02em;
}

.page-home .home-news__main p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--kx-text-dim);
  max-width: 480px;
}

.page-home .home-news__data {
  display: none;
}

.page-home .home-news__more {
  padding: 18px 8px;
  display: flex;
  justify-content: flex-end;
}

.page-home .home-news__more a {
  color: var(--kx-accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: border-bottom-color 200ms ease;
}

.page-home .home-news__more a:hover {
  border-bottom-color: var(--kx-accent);
}

/* 侧边提示块 */
.page-home .home-news__aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-home .home-callout {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  border: 2px solid var(--kx-warning);
  background: rgba(255, 107, 53, 0.06);
  padding: 18px 16px;
}

.page-home .home-callout__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--kx-warning);
  color: #0A0A0A;
  font-family: var(--kx-font-display);
  font-size: 22px;
  font-weight: 700;
}

.page-home .home-callout h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--kx-text);
}

.page-home .home-callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--kx-text-dim);
}

.page-home .home-news__aside-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--kx-surface);
  padding: 16px;
}

.page-home .home-news__aside-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--kx-text-faint);
  text-transform: uppercase;
}

.page-home .home-news__aside-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-news__aside-link a {
  color: var(--kx-accent-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 200ms ease;
}

.page-home .home-news__aside-link a:hover {
  border-bottom-color: var(--kx-accent-2);
}

/* ===== 媒体查询：平板及以上 ===== */
@media (min-width: 768px) {
  .page-home .home-frame__inner {
    grid-template-columns: 196px 1fr;
    gap: 30px;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .page-home .home-frame__rail {
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
  }

  .page-home .home-frame__rail-label {
    margin: 0 0 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--kx-text-faint);
    text-transform: uppercase;
  }

  .page-home .home-frame__rail-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
  }

  .page-home .home-frame__rail-list li {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--kx-text-dim);
    letter-spacing: 0.05em;
  }

  .page-home .home-frame__rail-list li.is-active {
    color: var(--kx-accent);
    font-weight: 700;
  }

  .page-home .home-frame__rail-dot {
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid var(--kx-text-faint);
    transform: rotate(45deg);
  }

  .page-home .home-frame__rail-list li.is-active .home-frame__rail-dot {
    border-color: var(--kx-accent);
    background: var(--kx-accent);
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
  }

  .page-home .home-frame__rail-link {
    display: inline-block;
    margin-top: 26px;
    font-size: 12px;
    color: var(--kx-accent-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.4);
    transition: border-color 200ms ease;
  }

  .page-home .home-frame__rail-link:hover {
    border-bottom-color: var(--kx-accent-2);
  }

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

  .page-home .home-frame__side-note {
    display: block;
    grid-column: 2;
    border-left: 3px solid var(--kx-purple);
    padding-left: 18px;
    margin-top: 24px;
  }

  .page-home .home-frame__side-note p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.8;
    color: var(--kx-text-faint);
  }

  .page-home .home-section {
    padding: 88px var(--kx-gutter) 72px;
  }

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

  .page-home .home-dashboard__board {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .page-home .home-match-card {
    padding: 28px 26px;
  }

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

  .page-home .home-dashboard__side {
    grid-template-columns: 1fr;
    padding: 20px;
  }

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

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

  .page-home .home-entry__card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 1.1fr 1fr;
  }

  .page-home .home-entry__card--wide .home-entry__thumb {
    min-height: 100%;
  }

  .page-home .home-entry__card--wide .home-entry__body {
    justify-content: center;
  }

  .page-home .home-news__layout {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .page-home .home-news__item {
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 20px 12px;
  }

  .page-home .home-news__icon {
    grid-row: span 2;
  }

  .page-home .home-news__icon img {
    width: 56px;
    height: 56px;
  }

  .page-home .home-news__time {
    grid-column: 2;
    grid-row: 1;
  }

  .page-home .home-news__main {
    grid-column: 2;
    grid-row: 2;
  }

  .page-home .home-news__data {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    grid-column: 3;
    grid-row: 1 / -1;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .home-news__data strong {
    font-family: var(--kx-font-display);
    font-size: 32px;
    color: var(--kx-text);
    letter-spacing: 0.02em;
  }

  .page-home .home-news__data span {
    font-size: 11px;
    color: var(--kx-text-faint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* ===== 媒体查询：桌面大屏 ===== */
@media (min-width: 1200px) {
  .page-home .home-frame__inner {
    grid-template-columns: 220px minmax(0, 960px) 220px;
    gap: 40px;
  }

  .page-home .home-frame__side-note {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    border-left: none;
    border-top: 3px solid var(--kx-purple);
    padding-top: 18px;
    padding-left: 0;
    margin-top: 142px;
  }

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

  .page-home .home-lede {
    font-size: 16px;
    max-width: 560px;
  }

  .page-home .home-dashboard__board {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

  .page-home .home-version__layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .page-home .home-entry__card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .page-home .home-entry__card--wide .home-entry__thumb {
    min-height: 220px;
  }

  .page-home .home-news__layout {
    grid-template-columns: 1fr 360px;
  }
}

/* ===== 媒体查询：大宽屏 ===== */
@media (min-width: 1600px) {
  .page-home .home-frame__inner {
    max-width: 1560px;
  }

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

  .page-home .home-section {
    max-width: 1560px;
  }
}

.page-home {
  --w: 1rem;
}
