.page-home {
  --home-gutter: clamp(20px, 4vw, 48px);
  --home-section-pad: clamp(64px, 8vw, 120px) 0;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--c-bg-deep);
  color: var(--c-card);
  overflow-x: hidden;
}

.page-home .hero-inner,
.page-home .featured-inner,
.page-home .leagues-inner,
.page-home .access-inner,
.page-home .features-inner,
.page-home .cta-inner {
  width: min(var(--container-w), calc(100% - var(--home-gutter) * 2));
  margin-inline: auto;
}

.page-home .btn {
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease), background 0.3s var(--home-ease), color 0.3s var(--home-ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn-accent {
  background: var(--c-accent);
  color: var(--c-ink);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.page-home .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--c-card);
  background: rgba(255, 255, 255, 0.06);
}

.page-home .home-features .btn-outline {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: transparent;
}

.page-home .breadcrumb {
  margin: 0 0 18px;
  font-size: 13px;
}

.page-home .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.25s;
}

.page-home .breadcrumb a:hover {
  color: var(--c-accent);
}

.page-home .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 6px;
}

.page-home .breadcrumb-current {
  color: rgba(255, 255, 255, 0.94);
}

.page-home .section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin: 0 0 14px;
}

.page-home .section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.page-home .section-head .section-lead {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 660px;
}

/* ===== 英雄区 ===== */
.page-home .home-hero {
  position: relative;
  padding: var(--content-top-pad) 0 80px;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(15, 81, 64, 0.75) 0%, transparent 60%),
    linear-gradient(140deg, var(--c-bg-deep) 0%, var(--c-primary) 58%, #0F5140 100%);
  overflow: hidden;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .page-home .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
}

.page-home .hero-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.page-home h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-card);
  margin: 0 0 22px;
  transform: skewX(-3deg);
  transform-origin: left center;
}

.page-home .hero-title-top {
  display: block;
}

.page-home .hero-title-line {
  display: block;
  color: var(--c-accent);
}

.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 26px;
  max-width: 560px;
}

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

.page-home .hero-stats {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}

@media (min-width: 640px) {
  .page-home .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-home .hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .hero-stats .stat-num {
  font-family: var(--font-num);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.page-home .hero-stats span:not(.stat-num) {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}

.page-home .hero-visual {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  box-shadow: var(--shadow-float);
}

@media (min-width: 900px) {
  .page-home .hero-visual {
    min-height: 480px;
  }
}

.page-home .hero-visual-frame {
  position: absolute;
  inset: 0;
}

.page-home .hero-grass {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.page-home .hero-live-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  background: rgba(5, 38, 29, 0.8);
  color: var(--c-card);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: home-pulse 1.6s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.page-home .hero-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.page-home .hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.5;
  animation: home-float 8s ease-in-out infinite;
}

.page-home .hero-particle.p1 { left: 16%; top: 68%; animation-delay: 0s; }
.page-home .hero-particle.p2 { left: 72%; top: 32%; width: 8px; height: 8px; animation-delay: 1.4s; }
.page-home .hero-particle.p3 { left: 42%; top: 82%; animation-delay: 2.8s; }
.page-home .hero-particle.p4 { left: 64%; top: 12%; width: 4px; height: 4px; background: var(--c-highlight); animation-delay: 4s; }
.page-home .hero-particle.p5 { left: 86%; top: 68%; animation-delay: 5.5s; }

@keyframes home-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50% { transform: translateY(-22px) scale(1.35); opacity: 0.85; }
}

/* ===== 焦点赛事 ===== */
.page-home .home-featured {
  background: var(--c-light-bg);
  color: var(--c-ink);
  padding: var(--home-section-pad);
}

.page-home .home-featured h2,
.page-home .home-features h2 {
  color: var(--c-ink);
}

.page-home .home-featured .section-lead,
.page-home .home-features .section-lead {
  color: var(--c-muted);
}

.page-home .featured-match {
  margin-top: 44px;
  background: linear-gradient(135deg, var(--c-bg-deep) 0%, var(--c-primary) 60%, var(--c-surface) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 36px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-float);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.page-home .featured-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.page-home .league-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.page-home .league-tag-epl {
  background: #5a1f1f;
  color: #fff;
  border-left: 4px solid #E31B23;
}

.page-home .label-laliga-tag {
  background: #4a3a12;
  color: #fff;
  border-left: 4px solid var(--c-highlight);
}

.page-home .label-seriea-tag {
  background: #123d26;
  color: #fff;
  border-left: 4px solid #1B7B3D;
}

.page-home .featured-round,
.page-home .featured-status {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .featured-status {
  margin-left: auto;
  background: rgba(255, 107, 53, 0.18);
  color: var(--c-accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.page-home .featured-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.page-home .featured-team {
  text-align: center;
  min-width: 0;
}

.page-home .featured-team .team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  background: var(--c-surface);
  color: var(--c-card);
  margin-bottom: 12px;
  transform: skew(-10deg);
}

.page-home .featured-team h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-card);
}

.page-home .featured-team p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.page-home .scoreboard-main {
  text-align: center;
}

.page-home .score-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-home .score-num {
  font-family: var(--font-num);
  font-size: clamp(44px, 7vw, 68px);
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1;
}

.page-home .score-colon {
  font-family: var(--font-num);
  font-size: 36px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.page-home .score-note {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-home .featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .featured-lineup,
.page-home .match-lineup {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.page-home .featured-lineup summary,
.page-home .match-lineup summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-card);
}

.page-home .featured-lineup summary::-webkit-details-marker,
.page-home .match-lineup summary::-webkit-details-marker {
  display: none;
}

.page-home .featured-lineup summary::before,
.page-home .match-lineup summary::before {
  content: "＋";
  color: var(--c-accent);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.page-home .featured-lineup[open] summary::before,
.page-home .match-lineup[open] summary::before {
  content: "－";
}

/* ===== 阵容列表 ===== */
.page-home .lineup-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 16px 16px;
}

@media (min-width: 640px) {
  .page-home .lineup-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.page-home .lineup-box {
  background: rgba(15, 81, 64, 0.5);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.page-home .lineup-box h4 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--c-highlight);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.page-home .lineup-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-size: 13px;
}

.page-home .lineup-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 5px 0;
}

.page-home .lineup-list .pos {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.page-home .lineup-list .player-num {
  font-family: var(--font-num);
  color: var(--c-card);
}

/* ===== 联赛筛选 ===== */
.page-home .home-leagues {
  background: var(--c-primary);
  color: var(--c-card);
  padding: var(--home-section-pad);
}

.page-home .home-leagues h2 {
  color: var(--c-card);
}

.page-home .home-leagues .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.page-home .league-decoration {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.page-home .league-decoration img {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  transform: skewX(-20deg);
  opacity: 0.92;
}

.page-home .league-tabs {
  position: relative;
  margin-top: 32px;
}

.page-home .league-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.page-home .league-tabbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.page-home .league-tabbar::-webkit-scrollbar {
  display: none;
}

.page-home .league-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s var(--home-ease);
}

.page-home .league-label em {
  font-style: normal;
  font-size: 12px;
  font-family: var(--font-num);
  color: var(--c-highlight);
}

.page-home .league-label:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
}

.page-home #league-all:checked ~ .league-tabbar label[for="league-all"],
.page-home #league-epl:checked ~ .league-tabbar label[for="league-epl"],
.page-home #league-laliga:checked ~ .league-tabbar label[for="league-laliga"],
.page-home #league-seriea:checked ~ .league-tabbar label[for="league-seriea"] {
  background: var(--c-accent);
  color: var(--c-ink);
  border-color: var(--c-accent);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.page-home #league-all:checked ~ .league-tabbar label[for="league-all"] em,
.page-home #league-epl:checked ~ .league-tabbar label[for="league-epl"] em,
.page-home #league-laliga:checked ~ .league-tabbar label[for="league-laliga"] em,
.page-home #league-seriea:checked ~ .league-tabbar label[for="league-seriea"] em {
  color: rgba(17, 17, 17, 0.8);
}

/* ===== 比赛卡片 ===== */
.page-home .match-board .match-card {
  display: none;
}

.page-home #league-all:checked ~ .match-board .match-card {
  display: flex;
}

.page-home #league-epl:checked ~ .match-board .match-card:not(.match-epl),
.page-home #league-laliga:checked ~ .match-board .match-card:not(.match-laliga),
.page-home #league-seriea:checked ~ .match-board .match-card:not(.match-seriea) {
  display: none;
}

.page-home #league-epl:checked ~ .match-board .match-epl,
.page-home #league-laliga:checked ~ .match-board .match-laliga,
.page-home #league-seriea:checked ~ .match-board .match-seriea {
  display: flex;
}

.page-home .match-card {
  flex-direction: column;
  gap: 0;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  border-left: 4px solid var(--c-line);
  transition: transform 0.3s var(--home-ease), box-shadow 0.3s var(--home-ease);
}

.page-home .match-card.match-epl { border-left-color: #E31B23; }
.page-home .match-card.match-laliga { border-left-color: var(--c-highlight); }
.page-home .match-card.match-seriea { border-left-color: #1B7B3D; }

.page-home .match-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

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

.page-home .match-time {
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--c-highlight);
}

.page-home .match-teams {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .match-team {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.page-home .match-team + .match-team {
  justify-content: flex-end;
  text-align: right;
}

.page-home .team-short {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 13px;
  font-weight: 900;
  background: var(--c-bg-deep);
  color: var(--c-card);
  border-radius: 10px;
  transform: skew(-8deg);
  flex-shrink: 0;
}

.page-home .team-full {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .match-vs {
  font-family: var(--font-num);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  padding: 0 4px;
  flex-shrink: 0;
}

.page-home .match-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .match-status-line {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

/* ===== 老用户入口 ===== */
.page-home .home-access {
  background: var(--c-bg-deep);
  color: var(--c-card);
  padding: var(--home-section-pad);
}

.page-home .home-access .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.page-home .access-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .page-home .access-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: stretch;
  }
}

.page-home .access-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .access-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
}

.page-home .access-point-num {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--c-accent);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .access-point h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--c-card);
}

.page-home .access-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

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

.page-home .access-lights {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(145deg, rgba(15, 81, 64, 0.55) 0%, rgba(5, 38, 29, 0.92) 100%),
    repeating-linear-gradient(45deg, rgba(255, 107, 53, 0.08) 0 6px, transparent 6px 16px);
}

.page-home .lights-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
  width: 100%;
}

.page-home .light-stat {
  display: flex;
  flex-direction: column;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: rgba(11, 61, 46, 0.78);
  text-align: center;
  border: 1px solid var(--c-line);
}

.page-home .light-key {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.page-home .light-value {
  font-family: var(--font-num);
  font-size: 24px;
  font-weight: 500;
  color: var(--c-highlight);
  line-height: 1.2;
}

.page-home .light-stat em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 2px;
}

/* ===== 功能亮点 ===== */
.page-home .home-features {
  background: var(--c-light-bg);
  color: var(--c-ink);
  padding: var(--home-section-pad);
}

.page-home .feature-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 44px;
}

@media (min-width: 992px) {
  .page-home .feature-showcase {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 56px;
  }
}

.page-home .feature-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transform: rotate(-1deg);
  display: block;
}

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

.page-home .feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--c-card);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border-left: 4px solid var(--c-accent);
  box-shadow: var(--shadow-card);
}

.page-home .feature-num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-accent);
  line-height: 1.2;
}

.page-home .feature-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .feature-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .feature-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 48px;
  padding: 28px;
  background: var(--c-primary);
  color: var(--c-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 720px) {
  .page-home .feature-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.page-home .trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-home .trust-icon {
  color: var(--c-highlight);
  font-size: 16px;
  line-height: 1.6;
  transform: rotate(45deg);
}

.page-home .trust-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}

.page-home .trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-card);
  margin-bottom: 4px;
}

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

/* ===== 底部行动区 ===== */
.page-home .home-cta {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-home .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .cta-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(90deg, rgba(5, 38, 29, 0.92) 0%, rgba(5, 38, 29, 0.55) 70%, rgba(5, 38, 29, 0.2) 100%);
}

.page-home .cta-inner {
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 760px) {
  .page-home .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}

.page-home .cta-copy {
  max-width: 680px;
}

.page-home .cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--c-card);
  text-transform: uppercase;
}

.page-home .cta-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== 小屏适配 ===== */
@media (max-width: 480px) {
  .page-home h1 {
    font-size: 32px;
  }

  .page-home .match-teams {
    gap: 8px;
  }

  .page-home .match-team {
    gap: 6px;
  }

  .page-home .team-short {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 8px;
  }

  .page-home .match-vs {
    padding: 0 2px;
  }

  .page-home .featured-scoreboard {
    gap: 8px;
  }

  .page-home .featured-team .team-badge {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .page-home .score-num {
    font-size: 40px;
  }

  .page-home .score-colon {
    font-size: 28px;
  }

  .page-home .access-point {
    flex-direction: column;
    gap: 8px;
  }

  .page-home .light-stat {
    padding: 10px 6px;
  }

  .page-home .light-value {
    font-size: 20px;
  }
}
