.page-home {
  --home-panel-pad: 1.2rem;
  --home-radius: 12px;
  --home-card-cut: 18px;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  color: var(--color-text);
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.page-home .breadcrumb .is-current {
  color: var(--color-accent);
}

.page-home .breadcrumb-sep {
  opacity: 0.5;
}

.page-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(57, 255, 20, 0.08);
  border-color: rgba(57, 255, 20, 0.4);
}

.page-home .live-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  animation: home-live-pulse 1.8s ease-in-out infinite;
}

.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--site-pad) * 2) 0 calc(var(--site-pad) * 3);
  min-height: clamp(760px, 92vh, 1100px);
  isolation: isolate;
  overflow: hidden;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.page-home .hero-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.08);
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 14, 28, 0.96) 0%,
    rgba(11, 30, 58, 0.86) 45%,
    rgba(11, 30, 58, 0.66) 100%
  );
}

.page-home .hero-geo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(135deg, rgba(57, 255, 20, 0.06) 25%, transparent 25%),
    linear-gradient(225deg, rgba(57, 255, 20, 0.06) 25%, transparent 25%),
    linear-gradient(315deg, rgba(57, 255, 20, 0.06) 25%, transparent 25%),
    linear-gradient(45deg, rgba(57, 255, 20, 0.06) 25%, transparent 25%);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 40%, transparent 100%);
}

.page-home .hero-particles {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(57, 255, 20, 0.28) 0, transparent 3px),
    radial-gradient(circle at 72% 62%, rgba(192, 192, 192, 0.22) 0, transparent 4px),
    radial-gradient(circle at 88% 18%, rgba(57, 255, 20, 0.18) 0, transparent 2px),
    radial-gradient(circle at 34% 78%, rgba(57, 255, 20, 0.12) 0, transparent 3px),
    radial-gradient(circle at 54% 42%, rgba(255, 255, 255, 0.14) 0, transparent 2px);
  animation: home-particle-drift 8s ease-in-out infinite alternate;
}

.page-home .hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-home .hero-copy {
  max-width: 820px;
  margin-bottom: 2rem;
}

.page-home .hero-copy h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: skewX(-6deg);
  color: var(--color-text);
  text-shadow: 0 0 42px rgba(57, 255, 20, 0.28);
  margin: 0.4rem 0 0;
}

.page-home .hero-lead {
  max-width: 640px;
  margin: 1.1rem 0 1.4rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-home .dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-top: 1.6rem;
}

/* ===== 面板卡片 ===== */
.page-home .panel-card {
  position: relative;
  padding: var(--home-panel-pad);
  background:
    linear-gradient(145deg, rgba(57, 255, 20, 0.08) 0%, rgba(57, 255, 20, 0) 30%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: var(--home-radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .panel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(57, 255, 20, 0.12);
}

.page-home .panel-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border-left: 1px solid rgba(57, 255, 20, 0.55);
  border-bottom: 1px solid rgba(57, 255, 20, 0.55);
  border-radius: 0 0 0 10px;
  pointer-events: none;
}

.page-home .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.14);
}

.page-home .panel-title-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-home .panel-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.85;
  transform: skewX(-10deg);
}

.page-home .panel-title-row h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  margin: 0;
  transform: skewX(-6deg);
}

.page-home .panel-status {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-silver);
  background: rgba(192, 192, 192, 0.1);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 99px;
  padding: 0.28rem 0.65rem;
}

.page-home .panel-status--live {
  color: var(--color-accent);
  border-color: rgba(57, 255, 20, 0.45);
  background: rgba(57, 255, 20, 0.1);
}

/* ===== 阵容面板 ===== */
.page-home .lineup-body {
  display: grid;
  gap: 1rem;
}

.page-home .lineup-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.page-home .lineup-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 240px;
  object-fit: cover;
  opacity: 0.6;
}

.page-home .radar-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72%, 260px);
  height: auto;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0.92;
}

.page-home .radar-svg .r-grid {
  fill: none;
  stroke: rgba(192, 192, 192, 0.35);
  stroke-width: 1;
}

.page-home .radar-svg .r-fill {
  fill: rgba(57, 255, 20, 0.18);
  stroke: rgba(57, 255, 20, 0.85);
  stroke-width: 2;
  stroke-linejoin: round;
}

.page-home .radar-svg .r-axis {
  stroke: rgba(192, 192, 192, 0.25);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.page-home .radar-svg .r-center {
  fill: var(--color-accent);
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.8));
}

.page-home .visual-caption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(6, 14, 28, 0.7);
  border-left: 2px solid var(--color-accent);
  padding: 0.3rem 0.6rem;
  border-radius: 0 4px 4px 0;
}

.page-home .lineup-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.page-home .lineup-formation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
}

.page-home .lineup-formation span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.page-home .lineup-formation strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}

.page-home .lineup-counts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.page-home .count-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-home .count-num {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.page-home .count-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.page-home .tab-list {
  display: flex;
  gap: 0.35rem;
  padding: 0.3rem;
  background: rgba(6, 14, 28, 0.55);
  border-radius: 6px;
  margin-top: 0.1rem;
}

.page-home .tab-btn {
  appearance: none;
  flex: 1;
  border: 1px solid transparent;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.4rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-home .tab-btn:hover {
  color: var(--color-text);
}

.page-home .tab-btn.is-active {
  background: rgba(57, 255, 20, 0.14);
  color: var(--color-accent);
  border-color: rgba(57, 255, 20, 0.35);
}

.page-home .tab-panel {
  padding-top: 0.75rem;
}

.page-home .lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.page-home .lineup-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  border-left: 2px solid transparent;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  font-size: 0.88rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.page-home .lineup-list li:hover {
  border-left-color: var(--color-accent);
  background: rgba(57, 255, 20, 0.05);
}

.page-home .pos-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.26);
  border-radius: 4px;
  padding: 0.15rem 0.45rem;
  min-width: 36px;
  text-align: center;
}

.page-home .pos-name {
  color: var(--color-text);
}

.page-home .sync-dot {
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.75);
}

.page-home .lineup-note {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.16);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
}

/* ===== 转会面板 ===== */
.page-home .transfer-body {
  display: grid;
  gap: 1rem;
}

.page-home .transfer-art {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.page-home .transfer-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  opacity: 0.4;
}

.page-home .transfer-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(57, 255, 20, 0.12) 50%,
    transparent 58%
  );
  background-size: 220% 220%;
  animation: home-scan-sweep 4.2s linear infinite;
}

.page-home .transfer-stats {
  display: grid;
  gap: 0.7rem;
}

.page-home .stat-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.page-home .stat-key {
  width: 66px;
  flex-shrink: 0;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-home .stat-rail {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
  min-width: 60px;
}

.page-home .rail-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.75), rgba(57, 255, 20, 0.2));
  border-radius: 99px;
}

.page-home .stat-val {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  flex-shrink: 0;
}

.page-home .transfer-note {
  margin: 0.15rem 0 0.4rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  background: rgba(57, 255, 20, 0.06);
  border: 1px solid rgba(57, 255, 20, 0.16);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
}

/* ===== 文本链接 ===== */
.page-home .text-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(57, 255, 20, 0.5);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-home .text-link:hover,
.page-home .text-link:focus-visible {
  color: var(--color-text);
  border-color: var(--color-accent);
  outline: none;
}

/* ===== 平台关键数据条 ===== */
.page-home .home-stats {
  position: relative;
  background: var(--color-bg-darker);
  border-top: 1px solid rgba(57, 255, 20, 0.18);
  border-bottom: 1px solid rgba(57, 255, 20, 0.18);
  padding: 2rem 0;
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
}

.page-home .stats-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  padding: 0.8rem 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border: 1px solid rgba(192, 192, 192, 0.12);
  border-radius: 10px;
}

.page-home .stats-cell::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 99px;
  margin-bottom: 0.2rem;
}

.page-home .stats-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--color-text);
  transform: skewX(-8deg);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

.page-home .stats-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* ===== 多端同步区 ===== */
.page-home .home-sync {
  position: relative;
  padding: 4rem 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(57, 255, 20, 0.09), transparent 42%),
    linear-gradient(180deg, var(--color-bg-dark), var(--color-bg-darker));
}

.page-home .home-sync::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.65), transparent);
}

.page-home .sync-container {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.page-home .sync-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(192, 192, 192, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

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

.page-home .sync-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(6, 14, 28, 0.55) 0%, transparent 55%);
}

.page-home .sync-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-bg-dark);
  background: var(--color-accent);
  padding: 0.4rem 0.7rem;
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.55);
}

.page-home .section-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-left: 2px solid var(--color-accent);
  padding-left: 0.7rem;
  margin-bottom: 0.7rem;
}

.page-home .sync-content > h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  transform: skewX(-6deg);
  margin: 0 0 0.9rem;
  color: var(--color-text);
}

.page-home .sync-lead {
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 0 1.4rem;
}

.page-home .sync-steps {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.page-home .sync-step {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.14);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.page-home .sync-step:hover {
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(57, 255, 20, 0.05);
}

.page-home .step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--color-accent);
  transform: skewX(-8deg);
  min-width: 1.4em;
  opacity: 0.9;
}

.page-home .step-text h3 {
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--color-text);
}

.page-home .step-text p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== 收藏卡片 ===== */
.page-home .collect-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(130deg, rgba(57, 255, 20, 0.13), rgba(57, 255, 20, 0.04));
  border: 1px solid rgba(57, 255, 20, 0.34);
  border-radius: 10px;
}

.page-home .collect-info strong {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-transform: uppercase;
}

.page-home .collect-info p {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.page-home .sync-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-left: 2px solid var(--color-silver);
  padding-left: 0.8rem;
  line-height: 1.6;
}

/* ===== 最新更新 ===== */
.page-home .home-updates {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(6, 14, 28, 0.85), var(--color-bg-dark) 40%),
    radial-gradient(circle at 15% 20%, rgba(57, 255, 20, 0.07), transparent 40%);
}

.page-home .home-updates::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.page-home .updates-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.page-home .updates-heading h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  text-transform: uppercase;
  transform: skewX(-6deg);
  margin: 0;
}

.page-home .updates-sub {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0;
}

.page-home .updates-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 255, 20, 0.4) rgba(255, 255, 255, 0.06);
}

.page-home .updates-track::-webkit-scrollbar {
  height: 6px;
}

.page-home .updates-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
}

.page-home .updates-track::-webkit-scrollbar-thumb {
  background: rgba(57, 255, 20, 0.4);
  border-radius: 99px;
}

.page-home .update-card {
  flex: 0 0 82vw;
  max-width: 320px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 1.3rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 192, 192, 0.18);
  border-radius: 10px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-home .update-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent 70%);
}

.page-home .update-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.36);
}

.page-home .update-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.28);
  border-radius: 99px;
  padding: 0.24rem 0.6rem;
}

.page-home .update-card h3 {
  font-size: 1.06rem;
  line-height: 1.35;
  margin: 0;
  color: var(--color-text);
}

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

.page-home .update-meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--color-silver);
  border-top: 1px dashed rgba(192, 192, 192, 0.25);
  padding-top: 0.6rem;
}

.page-home .updates-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(192, 192, 192, 0.14);
}

.page-home .updates-foot p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

.page-home .updates-extra {
  display: flex;
  gap: 1.2rem;
}

/* ===== 动效与关键帧 ===== */
@keyframes home-live-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.55);
    opacity: 0.55;
  }
}

@keyframes home-particle-drift {
  from {
    opacity: 0.5;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(12px);
  }
}

@keyframes home-scan-sweep {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 220% 220%;
  }
}

/* 滚动渐显由全站 site.js 的 areak reveal 协议处理；此处保证无 JS 时内容始终可见 */
.page-home [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ===== 桌面端布局增强 ===== */
@media (min-width: 900px) {
  .page-home .dashboard-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    gap: 1.4rem;
  }

  .page-home .panel-card {
    padding: 1.5rem;
  }

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

  .page-home .stats-cell {
    padding: 1rem;
  }

  .page-home .sync-container {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.2rem;
  }

  .page-home .updates-head {
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 1.6rem;
  }

  .page-home .updates-track {
    margin-left: -0.4rem;
    margin-right: -0.4rem;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }

  .page-home .update-card {
    flex-basis: 300px;
    max-width: 300px;
  }

  .page-home .lineup-visual img {
    max-height: 320px;
  }

  .page-home .transfer-art img {
    max-height: 340px;
  }
}

@media (min-width: 600px) {
  .page-home .home-hero {
    min-height: auto;
    padding-top: calc(var(--site-pad) * 2.8);
    padding-bottom: calc(var(--site-pad) * 3.4);
  }

  .page-home .update-card {
    flex-basis: 280px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
