.page-home {
  --h-gold: #FFD700;
  --h-gold-soft: #FFC300;
  --h-red: #E63946;
  --h-bg-deep: #0B132B;
  --h-paper: #F1FAEE;
  --h-gray: #A8B2D1;
  --h-indigo: #4B6CB7;
  --h-line: rgba(168, 178, 209, 0.22);
  --h-card-bg: rgba(11, 19, 43, 0.64);
}

.page-home .container-wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.page-home .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.page-home .button:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 3px;
}

.page-home .button-primary {
  background: var(--h-gold);
  color: #0A192F;
  border: 1px solid var(--h-gold);
}

.page-home .button-primary:hover {
  background: var(--h-gold-soft);
  border-color: var(--h-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.24);
}

.page-home .button-ghost {
  background: transparent;
  color: var(--h-paper);
  border: 1px solid rgba(241, 250, 238, 0.5);
}

.page-home .button-ghost:hover {
  border-color: var(--h-gold);
  color: var(--h-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 19, 43, 0.3);
}

/* ===== 框景首屏 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 20%, rgba(75, 108, 183, 0.26) 0%, rgba(10, 25, 47, 0.82) 44%), linear-gradient(135deg, #0A192F 0%, #0B132B 100%);
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 76px;
}

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

.page-home .hero-bg-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.98) 0%, rgba(10, 25, 47, 0.84) 38%, rgba(10, 25, 47, 0.58) 100%);
}

.page-home .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-frame {
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
}

.page-home .frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--h-gold);
  border-style: solid;
  border-width: 0;
}

.page-home .corner-tl {
  top: 0;
  left: 2vw;
  border-top-width: 2px;
  border-left-width: 2px;
}

.page-home .corner-tr {
  top: 0;
  right: 2vw;
  border-top-width: 2px;
  border-right-width: 2px;
}

.page-home .corner-bl {
  bottom: 0;
  left: 2vw;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.page-home .corner-br {
  bottom: 0;
  right: 2vw;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.page-home .frame-tick {
  position: absolute;
  background: rgba(255, 215, 0, 0.55);
}

.page-home .tick-t1, .page-home .tick-t2, .page-home .tick-t3, .page-home .tick-t4 {
  top: 0;
  width: 1px;
  height: 8px;
}

.page-home .tick-t1 { left: 28%; }
.page-home .tick-t2 { left: 47%; }
.page-home .tick-t3 { left: 66%; }
.page-home .tick-t4 { left: 84%; }
.page-home .tick-b1, .page-home .tick-b2 {
  bottom: 0;
  width: 1px;
  height: 8px;
}

.page-home .tick-b1 { left: 38%; }
.page-home .tick-b2 { left: 61%; }
.page-home .tick-l1, .page-home .tick-l2 {
  left: 0;
  width: 8px;
  height: 1px;
}

.page-home .tick-l1 { top: 34%; }
.page-home .tick-l2 { top: 66%; }
.page-home .tick-r1, .page-home .tick-r2 {
  right: 0;
  width: 8px;
  height: 1px;
}

.page-home .tick-r1 { top: 34%; }
.page-home .tick-r2 { top: 66%; }

.page-home .frame-index {
  position: absolute;
  bottom: 22px;
  right: 3vw;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(241, 250, 238, 0.5);
  font-weight: var(--fw-normal);
}

.page-home .frame-coord {
  position: absolute;
  top: 14px;
  left: 3vw;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(241, 250, 238, 0.42);
}

.page-home .hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .hero-side {
  border-left: 2px solid var(--h-gold);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 260px;
}

.page-home .side-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--h-gold);
  font-weight: var(--fw-bold);
}

.page-home .side-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--h-gray);
  margin: 0;
}

.page-home .side-date {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(241, 250, 238, 0.52);
}

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

.page-home .hero-kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--h-gold);
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: var(--fw-medium);
}

.page-home .hero-title {
  margin: 0 0 22px;
  line-height: 0.98;
}

.page-home .title-brand {
  display: block;
  font-size: clamp(44px, 9vw, 110px);
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 215, 0, 0.86);
  text-stroke: 1px rgba(255, 215, 0, 0.86);
  background: linear-gradient(100deg, #FFD700 10%, #FFF7CC 42%, #FFC300 74%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.page-home .title-sub {
  display: block;
  font-size: clamp(22px, 4.4vw, 52px);
  font-weight: var(--fw-black);
  color: #F1FAEE;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.page-home .hero-desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(241, 250, 238, 0.82);
  max-width: 620px;
  margin: 0 0 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .hero-platforms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.page-home .hero-platforms li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(241, 250, 238, 0.82);
}

.page-home .plat-dot {
  width: 6px;
  height: 6px;
  background: var(--h-gold);
  border-radius: 50%;
  display: inline-block;
}

.page-home .hero-bottom-meta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-inline: var(--gutter);
}

.page-home .bottom-meta-item {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(241, 250, 238, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .bottom-meta-item i {
  font-style: normal;
  color: var(--h-gold);
  font-weight: var(--fw-bold);
  font-size: 11px;
}

/* ===== 快捷入口栏 ===== */
.page-home .home-quick-rail {
  background: #0B132B;
  border-top: 1px solid rgba(168, 178, 209, 0.14);
  border-bottom: 1px solid rgba(168, 178, 209, 0.14);
  padding: 28px 0;
}

.page-home .quick-rail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .rail-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--h-line);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.page-home .rail-item:hover {
  border-color: var(--h-gold);
  background: rgba(255, 215, 0, 0.06);
  transform: translateX(4px);
}

.page-home .rail-item:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.page-home .rail-num {
  font-size: 11px;
  color: var(--h-gold);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
}

.page-home .rail-name {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--h-paper);
  letter-spacing: 0.02em;
}

.page-home .rail-meta {
  font-size: 12px;
  color: var(--h-gray);
  text-align: right;
}

/* ===== 联赛争冠仪表盘 ===== */
.page-home .home-league {
  background: linear-gradient(180deg, #0A192F 0%, #0D1F3E 54%, #0B132B 100%);
  padding: 76px 0 88px;
  position: relative;
}

.page-home .home-league::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--h-gold) 0%, rgba(255, 215, 0, 0.1) 60%, transparent 100%);
}

.page-home .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 48px;
}

.page-home .heading-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.page-home .index-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  font-size: 12px;
  font-weight: var(--fw-black);
  color: var(--h-gold);
  border: 1px solid rgba(255, 215, 0, 0.5);
  border-radius: 2px;
  background: rgba(255, 215, 0, 0.06);
  letter-spacing: 0.08em;
}

.page-home .index-label.light {
  border-color: rgba(241, 250, 238, 0.4);
  color: #F1FAEE;
  background: transparent;
}

.page-home .kicker-title {
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--h-gold);
  font-weight: var(--fw-medium);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.page-home .section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: var(--fw-black);
  line-height: 1.1;
  color: #F1FAEE;
  margin: 0;
  letter-spacing: -0.01em;
}

.page-home .heading-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--h-gray);
  margin: 0;
  max-width: 480px;
}

.page-home .heading-note.light {
  color: rgba(241, 250, 238, 0.68);
}

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

.page-home .league-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.page-home .aside-card {
  background: var(--h-card-bg);
  border: 1px solid var(--h-line);
  border-radius: 4px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.page-home .aside-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(75, 108, 183, 0.18) 0%, transparent 72%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.page-home .aside-card.accent {
  border-color: rgba(255, 215, 0, 0.36);
  background: linear-gradient(140deg, rgba(255, 215, 0, 0.1) 0%, rgba(11, 19, 43, 0.5) 100%);
}

.page-home .aside-card-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--h-gold);
  text-transform: uppercase;
}

.page-home .aside-card-value {
  font-size: 34px;
  font-weight: var(--fw-black);
  color: #F1FAEE;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-home .aside-card-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--h-gray);
}

.page-home .aside-card.small-note {
  grid-column: 1 / -1;
}

.page-home .aside-card.small-note p {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--h-gray);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-home .league-list-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .league-list-mini span {
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid var(--h-line);
  border-radius: 999px;
  color: rgba(241, 250, 238, 0.82);
}

.page-home .league-main {
  min-width: 0;
}

.page-home .league-cells {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.page-home .league-cell {
  background: linear-gradient(165deg, rgba(75, 108, 183, 0.12) 0%, rgba(11, 19, 43, 0.86) 78%);
  border: 1px solid rgba(168, 178, 209, 0.2);
  border-top: 3px solid var(--h-gold);
  border-radius: 4px;
  padding: 20px;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-fast);
}

.page-home .league-cell:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
  border-top-color: var(--h-red);
}

.page-home .cell-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .cell-league-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--h-gray);
  text-transform: uppercase;
}

.page-home .cell-status {
  font-size: 11px;
  color: var(--h-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .status-dot {
  width: 6px;
  height: 6px;
  background: var(--h-gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.page-home .status-dot.red {
  background: var(--h-red);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.78); }
}

.page-home .cell-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .cell-name {
  font-size: 22px;
  font-weight: var(--fw-black);
  color: #F1FAEE;
  margin: 0;
}

.page-home .cell-leader {
  font-size: 11px;
  color: rgba(241, 250, 238, 0.66);
}

.page-home .cell-chart {
  border-left: 1px solid rgba(168, 178, 209, 0.22);
  padding-left: 14px;
}

.page-home .cell-chart-top, .page-home .cell-chart-mid, .page-home .cell-chart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  font-size: 12px;
  color: var(--h-gray);
}

.page-home .cell-chart-top {
  margin-bottom: 6px;
}

.page-home .cell-chart-mid {
  margin: 10px 0 6px;
}

.page-home .cell-chart-bottom {
  margin: 10px 0 6px;
}

.page-home .chart-team {
  color: rgba(241, 250, 238, 0.76);
}

.page-home .chart-points {
  font-weight: var(--fw-black);
  color: var(--h-gold);
  font-size: 13px;
}

.page-home .plot-zero {
  height: 1px;
  background: rgba(168, 178, 209, 0.14);
  margin-bottom: 6px;
}

.page-home .plot-line {
  position: relative;
  height: 8px;
  background: rgba(168, 178, 209, 0.08);
  border-radius: 999px;
  margin-bottom: 14px;
}

.page-home .plot-line.full {
  margin-bottom: 10px;
}

.page-home .plot-bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #FFC300);
  border-radius: 999px;
  min-width: 6px;
}

.page-home .plot-follower {
  position: absolute;
  top: -4px;
  transform: translateX(2px);
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: var(--h-red);
  background: rgba(11, 19, 43, 0.8);
  padding: 1px 4px;
  border-radius: 2px;
}

.page-home .cell-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 10px;
}

.page-home .cell-win-rate {
  font-size: 12px;
  color: var(--h-gray);
}

.page-home .cell-link {
  font-size: 12px;
  color: var(--h-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.page-home .cell-link:hover {
  gap: 12px;
}

.page-home .cell-link i {
  font-style: normal;
}

.page-home .league-main-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .league-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.page-home .league-visual-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.page-home .league-image-wrap:hover .league-visual-img {
  transform: scale(1.03);
}

.page-home .league-bottom-note {
  background: rgba(11, 19, 43, 0.72);
  border: 1px solid var(--h-line);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.page-home .lbk {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--h-gold);
  margin: 0;
}

.page-home .lbt {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: rgba(241, 250, 238, 0.78);
}

.page-home .league-bottom-note .button {
  align-self: flex-start;
  margin-top: 4px;
}

/* ===== 历史交锋速查 ===== */
.page-home .home-h2h {
  background: #0B132B;
  padding: 76px 0 88px;
  position: relative;
}

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

.page-home .section-heading.reversed {
  margin-bottom: 40px;
}

.page-home .h2h-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .h2h-board {
  background: linear-gradient(150deg, rgba(75, 108, 183, 0.08) 0%, rgba(10, 25, 47, 0.84) 100%);
  border: 1px solid rgba(168, 178, 209, 0.2);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .h2h-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  background: rgba(11, 19, 43, 0.7);
  border-radius: 4px;
  padding: 20px 14px;
}

.page-home .team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.page-home .team-code {
  font-size: 28px;
  font-weight: var(--fw-black);
  letter-spacing: 0.04em;
  color: #F1FAEE;
  background: linear-gradient(180deg, #F1FAEE 0%, #A8B2D1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.page-home .team-name {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: rgba(241, 250, 238, 0.9);
}

.page-home .team-stat {
  font-size: 11px;
  color: var(--h-gray);
}

.page-home .team-block.away .team-code,
.page-home .team-block.away .team-name {
  color: var(--h-gold);
}

.page-home .h2h-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
}

.page-home .vs-mark {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: var(--h-red);
  letter-spacing: 0.08em;
  font-style: italic;
}

.page-home .vs-round-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--h-gray);
  text-align: center;
}

.page-home .h2h-records {
  position: relative;
}

.page-home .h2h-expand-btn {
  width: 100%;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--h-gold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.page-home .h2h-expand-btn:hover {
  background: rgba(255, 215, 0, 0.14);
  border-color: rgba(255, 215, 0, 0.5);
}

.page-home .h2h-expand-btn:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: 2px;
}

.page-home .expand-symbol {
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform var(--transition-base);
}

.page-home .expand-symbol::before,
.page-home .expand-symbol::after {
  content: "";
  position: absolute;
  background: var(--h-gold);
  border-radius: 1px;
}

.page-home .expand-symbol::before {
  top: 6px;
  left: 1px;
  width: 12px;
  height: 2px;
}

.page-home .expand-symbol::after {
  top: 1px;
  left: 6px;
  width: 2px;
  height: 12px;
}

.page-home .h2h-expand-panel {
  display: none;
  margin-top: 16px;
  border: 1px solid var(--h-line);
  border-radius: 4px;
  padding: 20px;
  background: rgba(11, 19, 43, 0.64);
}

.page-home .h2h-expand-panel[data-open] {
  display: block;
  animation: expand-fade 0.3s var(--ease-out);
}

@keyframes expand-fade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-home .panel-note {
  font-size: 12px;
  color: var(--h-gray);
  margin: 0 0 16px;
}

.page-home .h2h-result-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.page-home .result-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(168, 178, 209, 0.1);
}

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

.page-home .result-round {
  font-size: 11px;
  color: var(--h-gray);
  letter-spacing: 0.06em;
}

.page-home .result-score {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: #F1FAEE;
  letter-spacing: 0.06em;
  font-style: italic;
}

.page-home .result-team {
  font-size: 12px;
  color: var(--h-gold);
  text-align: right;
}

.page-home .h2h-more {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.page-home .h2h-more-note {
  font-size: 12px;
  line-height: 1.6;
  color: var(--h-gray);
}

.page-home .h2h-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .h2h-tag {
  font-size: 12px;
  color: rgba(241, 250, 238, 0.78);
  background: rgba(168, 178, 209, 0.08);
  border: 1px solid rgba(168, 178, 209, 0.16);
  border-radius: 999px;
  padding: 6px 14px;
}

.page-home .h2h-tag.gold {
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--h-gold);
  background: rgba(255, 215, 0, 0.06);
}

.page-home .h2h-visual {
  position: relative;
  min-height: 200px;
}

.page-home .h2h-img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid rgba(168, 178, 209, 0.2);
}

.page-home .h2h-img-cover {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(11, 19, 43, 0) 62%, rgba(11, 19, 43, 0.6) 100%);
  pointer-events: none;
}

/* ===== 赛事日志 ===== */
.page-home .home-journal {
  background: linear-gradient(180deg, #0A192F 0%, #0D1F3E 100%);
  padding: 76px 0 88px;
}

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

.page-home .journal-card {
  background: rgba(11, 19, 43, 0.72);
  border: 1px solid var(--h-line);
  border-left: 4px solid rgba(255, 215, 0, 0.72);
  padding: 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-left-color var(--transition-fast);
}

.page-home .journal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-left-color: var(--h-red);
}

.page-home .journal-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-home .journal-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--h-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 999px;
  padding: 4px 12px;
}

.page-home .journal-stat {
  font-size: 11px;
  color: var(--h-gray);
}

.page-home .journal-title {
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: #F1FAEE;
  margin: 0;
}

.page-home .journal-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--h-gray);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home .journal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 178, 209, 0.12);
}

.page-home .journal-seq {
  font-size: 20px;
  font-weight: var(--fw-black);
  color: rgba(255, 215, 0, 0.18);
}

.page-home .journal-more {
  font-size: 12px;
  color: var(--h-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.page-home .journal-more:hover {
  gap: 12px;
}

.page-home .journal-more i {
  font-style: normal;
}

/* ===== 球迷会入口 ===== */
.page-home .home-fanclub {
  background: radial-gradient(ellipse at 80% 20%, rgba(75, 108, 183, 0.14) 0%, rgba(10, 25, 47, 1) 62%), #0A192F;
  padding: 76px 0 88px;
  border-top: 1px solid rgba(168, 178, 209, 0.14);
  border-bottom: 1px solid rgba(168, 178, 209, 0.14);
}

.page-home .fanclub-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.page-home .fanclub-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-home .fanclub-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(241, 250, 238, 0.78);
  margin: 0;
  max-width: 560px;
}

.page-home .fanclub-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .fc-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid var(--h-line);
  border-radius: 4px;
  padding: 16px;
}

.page-home .fc-point-num {
  font-size: 12px;
  font-weight: var(--fw-black);
  color: var(--h-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 2px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .fc-point h4 {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: #F1FAEE;
  margin: 0 0 4px;
}

.page-home .fc-point p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--h-gray);
  margin: 0;
}

.page-home .fanclub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.page-home .fanclub-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out);
}

.page-home .fanclub-visual:hover .fanclub-img {
  transform: scale(1.02);
}

/* ===== 站内索引 ===== */
.page-home .home-index-grid {
  background: #0B132B;
  padding: 68px 0 80px;
  position: relative;
}

.page-home .home-index-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, var(--h-gold) 45%, rgba(255, 215, 0, 0) 100%);
  opacity: 0.28;
}

.page-home .index-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.page-home .index-grid-note {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--h-gray);
}

.page-home .index-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--h-line);
  border-radius: 4px;
  overflow: hidden;
}

.page-home .index-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 178, 209, 0.12);
  transition: background var(--transition-fast), padding var(--transition-fast);
}

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

.page-home .index-item:hover {
  background: rgba(255, 215, 0, 0.06);
  padding-left: 26px;
}

.page-home .index-item:focus-visible {
  outline: 2px solid var(--h-gold);
  outline-offset: -2px;
}

.page-home .ix-num {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--h-gold);
  letter-spacing: 0.1em;
}

.page-home .ix-title {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: #F1FAEE;
}

.page-home .ix-desc {
  font-size: 12px;
  color: var(--h-gray);
  text-align: right;
}

.page-home .ix-arrow {
  font-style: normal;
  color: var(--h-gold);
  font-size: 16px;
  transition: transform var(--transition-fast);
}

.page-home .index-item:hover .ix-arrow {
  transform: translateX(4px);
}

/* ===== 响应式 ===== */
@media (min-width: 480px) {
  .page-home .quick-rail-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .page-home .h2h-more {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media (min-width: 780px) {
  .page-home .hero-content {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 40px;
  }

  .page-home .hero-side {
    align-self: start;
    margin-top: 4px;
  }

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

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

  .page-home .h2h-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .page-home .h2h-visual {
    min-height: auto;
  }

  .page-home .fanclub-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: center;
    gap: 56px;
  }

  .page-home .league-main-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .page-home .league-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
  }

  .page-home .league-aside {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .page-home .aside-card.small-note {
    grid-column: auto;
  }

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

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

  .page-home .index-item:nth-child(odd) {
    border-right: 1px solid rgba(168, 178, 209, 0.12);
  }
}

@media (max-width: 380px) {
  .page-home .cell-title-row {
    flex-direction: column;
    gap: 4px;
  }

  .page-home .h2h-teams {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-home .h2h-vs {
    border-top: 1px solid var(--h-line);
    border-bottom: 1px solid var(--h-line);
    padding: 12px 0;
  }
}
