.page-home {
  --home-orange-glow: rgba(255, 107, 0, 0.18);
  --home-neon-glow: rgba(57, 255, 20, 0.14);
  --home-gradient: linear-gradient(135deg, rgba(255, 107, 0, 0.85), rgba(57, 255, 20, 0.35));
  --home-skew: -5deg;
  --home-radius-card: 16px;
}

/* ===== HERO ===== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--clr-white);
  background: var(--clr-dark);
  isolation: isolate;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 40%;
}
.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
    rgba(17, 17, 17, 0.94) 0%,
    rgba(30, 30, 30, 0.78) 46%,
    rgba(255, 107, 0, 0.36) 100%);
}
.page-home .home-hero__container {
  padding-top: 140px;
  padding-bottom: 60px;
}
.page-home .home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .home-hero__brand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-left: 2px solid var(--clr-neon);
  padding-left: 14px;
}
.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  max-width: 720px;
  text-transform: uppercase;
}
.page-home .home-hero__title-accent {
  display: block;
  color: var(--clr-orange);
  font-style: italic;
  transform: skewX(-4deg);
  text-shadow: 0 4px 28px rgba(255, 107, 0, 0.35);
}
.page-home .home-hero__lead {
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.88);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.page-home .home-hero__actions .btn-primary {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
}
.page-home .home-hero__actions .btn-outline {
  border-color: var(--clr-white);
  color: var(--clr-white);
}
.page-home .home-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  max-width: 680px;
}
.page-home .home-hero__index a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: var(--transition-base);
}
.page-home .home-hero__index a span {
  font-family: var(--font-mono);
  color: var(--clr-neon);
  font-weight: 700;
}
.page-home .home-hero__index a:hover {
  color: var(--clr-orange);
}
.page-home .home-hero__side {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.page-home .home-hero__side span:first-child {
  font-size: 10px;
}
.page-home .home-hero__side span:nth-child(2) {
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-orange);
}
.page-home .home-hero__side span:last-child {
  font-size: 10px;
}

/* ===== 01 FEATURES ===== */
.page-home .home-features {
  background: var(--clr-light-gray);
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
}
.page-home .home-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--home-gradient);
}
.page-home .home-features__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}
.page-home .home-features__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-mid-gray);
  max-width: 540px;
  margin-bottom: 40px;
  padding-left: 44px;
}
.page-home .home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .home-feature {
  padding: 28px 24px;
  border-radius: var(--home-radius-card);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.06);
  transition: var(--transition-base);
}
.page-home .home-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(255, 107, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.35);
}
.page-home .home-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--home-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.page-home .home-feature__icon svg {
  width: 26px;
  height: 26px;
}
.page-home .home-feature h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--clr-dark);
}
.page-home .home-feature p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-mid-gray);
  margin: 0;
}

/* ===== 02 LOGIN ENTRY ===== */
.page-home .home-login {
  background: var(--clr-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.page-home .home-login::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--home-neon-glow), transparent 70%);
  border-radius: 50%;
}
.page-home .home-login::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--home-orange-glow), transparent 70%);
  border-radius: 50%;
}
.page-home .home-login__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-home .home-login__content {
  max-width: 640px;
}
.page-home .home-login__num {
  color: var(--clr-neon);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.page-home .home-login__title {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 14px;
}
.page-home .home-login__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  border-left: 3px solid var(--clr-orange);
  padding-left: 16px;
}
.page-home .home-login__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.page-home .home-login__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}
.page-home .home-login__step:hover {
  border-color: var(--clr-orange);
  background: rgba(255, 107, 0, 0.08);
}
.page-home .home-login__step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  border-radius: 8px;
  background: var(--clr-orange);
  color: var(--clr-white);
}
.page-home .home-login__step:nth-child(3) .home-login__step-num {
  background: var(--clr-neon);
  color: var(--clr-dark);
}
.page-home .home-login__step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
.page-home .home-login__step strong {
  display: block;
  font-weight: 700;
  color: var(--clr-white);
}
.page-home .home-login__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

/* ===== 03 REGISTER FLOW ===== */
.page-home .home-register {
  background: var(--clr-light-gray);
  padding-top: 56px;
  padding-bottom: 56px;
}
.page-home .home-register__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}
.page-home .home-register__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--clr-mid-gray);
  max-width: 640px;
  margin-bottom: 36px;
  padding-left: 44px;
}
.page-home .home-register__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.page-home .home-register__step {
  position: relative;
  background: var(--clr-white);
  border-radius: 14px;
  padding: 20px 18px 20px 52px;
  border-left: 4px solid var(--clr-orange);
  transition: var(--transition-base);
}
.page-home .home-register__step:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
}
.page-home .home-register__step:nth-child(2) {
  border-left-color: var(--clr-neon);
}
.page-home .home-register__step:nth-child(3) {
  border-left-color: var(--clr-orange);
}
.page-home .home-register__step:nth-child(4) {
  border-left-color: var(--clr-neon);
}
.page-home .home-register__step-num {
  position: absolute;
  left: 14px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  background: var(--clr-dark);
  color: var(--clr-white);
}
.page-home .home-register__step:nth-child(2) .home-register__step-num,
.page-home .home-register__step:nth-child(4) .home-register__step-num {
  background: var(--clr-neon);
  color: var(--clr-dark);
}
.page-home .home-register__step h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--clr-dark);
}
.page-home .home-register__step p {
  font-size: 14px;
  color: var(--clr-mid-gray);
  margin: 0;
}
.page-home .home-register__media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 12px 32px rgba(30, 30, 30, 0.1);
}
.page-home .home-register__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .home-register__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--clr-dark);
  border-radius: 14px;
  color: var(--clr-white);
}
.page-home .home-register__cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.page-home .home-register__cta .btn-primary {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
}

/* ===== 04 COMPARE ===== */
.page-home .home-compare {
  background: var(--clr-white);
  padding-top: 64px;
  padding-bottom: 64px;
}
.page-home .home-compare__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}
.page-home .home-compare__intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--clr-mid-gray);
  max-width: 640px;
  margin-bottom: 40px;
  padding-left: 44px;
}
.page-home .home-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.page-home .home-compare__card {
  background: var(--clr-light-gray);
  border-radius: 16px;
  padding: 24px;
  border-top: 4px solid var(--clr-mid-gray);
  transition: var(--transition-base);
}
.page-home .home-compare__card--new {
  border-top-color: var(--clr-orange);
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.06), rgba(255, 255, 255, 0.9));
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.1);
}
.page-home .home-compare__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.page-home .home-compare__card-head span:first-child {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--clr-dark);
}
.page-home .home-compare__badge {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--clr-light-gray);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--clr-mid-gray);
}
.page-home .home-compare__badge--new {
  background: var(--clr-neon);
  color: var(--clr-dark);
  border-color: var(--clr-neon);
}
.page-home .home-compare__list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.page-home .home-compare__list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.page-home .home-compare__list div:last-child {
  border-bottom: none;
}
.page-home .home-compare__list dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-mid-gray);
}
.page-home .home-compare__list dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--clr-dark);
}
.page-home .home-compare__toggle {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.page-home .home-compare__details {
  background: var(--clr-light-gray);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid transparent;
}
.page-home .home-compare__details[open] {
  border-color: var(--clr-orange);
}
.page-home .home-compare__details summary {
  font-family: var(--font-heading);
  font-size: 16px;
  cursor: pointer;
  color: var(--clr-dark);
  padding: 4px 0;
}
.page-home .home-compare__details summary::marker {
  color: var(--clr-orange);
}
.page-home .home-compare__details p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--clr-mid-gray);
  margin: 14px 0 0;
}
.page-home .home-compare__media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.page-home .home-compare__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-home .home-compare__cta {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(57, 255, 20, 0.06));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 16px;
}
.page-home .home-compare__cta p {
  font-size: 16px;
  color: var(--clr-mid-gray);
  margin: 0 0 18px;
}
.page-home .home-compare__cta .btn-outline {
  border-color: var(--clr-orange);
  color: var(--clr-orange-dark);
}

/* ===== 05 MATCHES & DASHBOARD ===== */
.page-home .home-matches {
  background: var(--clr-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
}
.page-home .home-matches::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-neon));
}
.page-home .home-matches__header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 12px;
}
.page-home .home-matches__header .section-title {
  color: var(--clr-white);
}
.page-home .home-matches__header .section-number {
  color: var(--clr-neon);
}
.page-home .home-matches__intro {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin-bottom: 36px;
  padding-left: 44px;
}
.page-home .home-matches__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* panel */
.page-home .home-matches__panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-base);
}
.page-home .home-matches__panel:hover {
  border-color: var(--clr-neon);
}
.page-home .home-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.page-home .home-panel__title {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.page-home .home-panel__metrics {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}
.page-home .home-metric {
  display: grid;
  grid-template-columns: 84px 1fr 48px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.page-home .home-metric__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
  white-space: nowrap;
}
.page-home .home-metric__bar {
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.page-home .home-metric__bar span {
  display: block;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-neon));
}
.page-home .home-metric__value {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--clr-white);
  text-align: right;
}
.page-home .home-panel__foot {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

/* match list */
.page-home .home-matches__list {
  display: grid;
  gap: 12px;
}
.page-home .home-match {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  transition: var(--transition-base);
}
.page-home .home-match:hover {
  border-color: rgba(255, 107, 0, 0.5);
  background: rgba(255, 107, 0, 0.06);
}
.page-home .home-match--live {
  border-left: 4px solid var(--clr-orange);
}
.page-home .home-match__league {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-neon);
  min-width: 44px;
}
.page-home .home-match__teams {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}
.page-home .home-match__score {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--clr-neon);
  background: rgba(57, 255, 20, 0.08);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 14px;
}
.page-home .home-match__status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
}
.page-home .home-matches__media {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.page-home .home-matches__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* stats */
.page-home .home-matches__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.page-home .home-stat {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.16), rgba(57, 255, 20, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition-base);
}
.page-home .home-stat:hover {
  transform: translateY(-4px);
  border-color: var(--clr-neon);
}
.page-home .home-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1.1;
  margin-bottom: 6px;
}
.page-home .home-stat:nth-child(2) .home-stat__num,
.page-home .home-stat:nth-child(4) .home-stat__num {
  color: var(--clr-neon);
}
.page-home .home-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.page-home .home-matches__foot {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}
.page-home .home-matches__foot p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 18px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.page-home .home-matches__foot .btn-primary {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: var(--clr-white);
}

/* ===== 桌面端增强 ===== */
@media (min-width: 768px) {
  .page-home .home-hero__title {
    font-size: 68px;
  }
  .page-home .home-hero__lead {
    font-size: 18px;
  }
  .page-home .home-features__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
  .page-home .home-feature {
    display: flex;
    flex-direction: column;
  }
  .page-home .home-feature__icon {
    margin-bottom: 20px;
  }
  .page-home .home-login__container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
  }
  .page-home .home-login__steps {
    gap: 12px;
  }
  .page-home .home-register__flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .page-home .home-register__step {
    padding-left: 18px;
    padding-top: 56px;
    border-left: none;
    border-top: 4px solid var(--clr-orange);
  }
  .page-home .home-register__step:nth-child(2) {
    border-top-color: var(--clr-neon);
  }
  .page-home .home-register__step:nth-child(3) {
    border-top-color: var(--clr-orange);
  }
  .page-home .home-register__step:nth-child(4) {
    border-top-color: var(--clr-neon);
  }
  .page-home .home-register__step-num {
    top: 16px;
    left: 18px;
  }
  .page-home .home-register__cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .page-home .home-register__cta p {
    margin: 0;
  }
  .page-home .home-compare__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-compare__toggle {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-matches__board {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .page-home .home-matches__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-stat__num {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-features {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .page-home .home-features__grid {
    gap: 28px;
    grid-template-columns: repeat(12, 1fr);
  }
  .page-home .home-feature:nth-child(1) {
    grid-column: 1 / 5;
  }
  .page-home .home-feature:nth-child(2) {
    grid-column: 5 / 10;
    margin-top: 32px;
  }
  .page-home .home-feature:nth-child(3) {
    grid-column: 8 / 13;
    margin-top: 64px;
  }
  .page-home .home-login {
    padding: 88px 0;
  }
  .page-home .home-register {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .page-home .home-register__media img {
    max-height: 340px;
  }
  .page-home .home-compare {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .page-home .home-matches {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .page-home .home-matches__board {
    gap: 28px;
  }
  .page-home .home-match__teams {
    font-size: 16px;
  }
}

/* ===== 减少动画偏好 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .home-feature,
  .page-home .home-register__step,
  .page-home .home-match,
  .page-home .home-stat {
    transition: none;
  }
}
