.page-home {
  --home-title: clamp(2.2rem, 5.6vw, 4.2rem);
  --home-subtitle: clamp(1.1rem, 2.4vw, 1.8rem);
  --home-rotate: rotate(-2deg);
  background: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.7;
}

.page-home a {
  color: var(--c-blue);
  text-decoration: none;
}

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

.page-home .container {
  width: min(100% - 32px, var(--container-w));
  margin-inline: auto;
}

/* ==================== 通用区块头 ==================== */
.home-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.home-section__index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-green);
  background: rgba(0, 255, 198, 0.08);
  border: 1px solid rgba(0, 255, 198, 0.25);
  padding: 2px 8px;
  letter-spacing: 1px;
}

.home-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 1px;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.home-section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-border), transparent);
  min-width: 40px;
}

.home-section__more {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-text-dim);
  border-bottom: 1px dashed var(--c-border);
  padding-bottom: 2px;
}

.home-section__more:hover {
  color: var(--c-green);
}

/* ==================== HERO ==================== */
.home-hero {
  position: relative;
  padding: 32px 16px 40px;
  background: linear-gradient(160deg, #050F16 0%, #0A1E2A 40%, #123B4E 100%);
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.1);
}

.home-hero__beam {
  position: absolute;
  left: -10%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, rgba(0, 255, 198, 0.12) 0%, transparent 60%);
  transform: skewX(-12deg);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 0px, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.home-hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-hero__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--c-green);
  border: 1px solid rgba(0, 255, 198, 0.3);
  padding: 4px 12px;
  background: rgba(0, 255, 198, 0.06);
  margin-bottom: 18px;
}

.home-hero__title {
  margin: 0 0 14px;
  line-height: 1.08;
}

.home-hero__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: var(--home-title);
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: 2px;
}

.home-hero__title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: var(--home-subtitle);
  font-weight: 400;
  color: var(--c-green);
  letter-spacing: 4px;
  margin-top: 4px;
  text-shadow: 0 0 24px rgba(0, 255, 198, 0.35);
}

.home-hero__desc {
  font-size: 15px;
  color: #C8D9E8;
  max-width: 30em;
  margin: 0 0 20px;
  line-height: 1.8;
}

.home-hero__search {
  display: flex;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--c-border);
  background: rgba(5, 15, 22, 0.7);
  margin-bottom: 16px;
  transition: border-color 0.3s var(--ease-out);
}

.home-hero__search:focus-within {
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(0, 255, 198, 0.15);
}

.home-hero__search-input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  color: var(--c-text);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
}

.home-hero__search-input::placeholder {
  color: var(--c-text-dim);
}

.home-hero__search-btn {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--c-green);
  color: #06222B;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: background 0.25s var(--ease-out);
}

.home-hero__search-btn:hover {
  background: #7AFFE0;
  color: #06222B;
}

.home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.home-hero__tags-label {
  font-size: 13px;
  color: var(--c-text-dim);
  font-family: var(--font-mono);
}

.home-hero__tag {
  font-size: 13px;
  color: var(--c-blue);
  border: 1px solid var(--c-border);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.04);
  transition: all 0.25s var(--ease-out);
}

.home-hero__tag:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

/* Hero 右侧拼贴 */
.home-hero__board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  transform: var(--home-rotate);
  margin: 0 auto;
  width: 100%;
  max-width: 620px;
}

.hero-score {
  grid-column: 1 / -1;
  background: var(--c-green);
  color: #06222B;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: 0 18px 44px rgba(0, 255, 198, 0.22);
  z-index: 3;
}

.hero-score__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #06222B;
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hero-score__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: home-pulse 1.2s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

.hero-score__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 800;
}

.hero-score__team {
  font-size: 15px;
  text-align: center;
  flex: 1;
  line-height: 1.4;
}

.hero-score__score {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 900;
  background: #06222B;
  color: var(--c-green);
  padding: 4px 14px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.hero-score__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #0A2A33;
  margin-top: 12px;
  font-family: var(--font-mono);
}

.hero-score__bar {
  height: 3px;
  background: rgba(6, 34, 43, 0.15);
  margin-top: 10px;
  border-radius: 2px;
  overflow: hidden;
}

.hero-score__bar span {
  display: block;
  height: 100%;
  width: 68%;
  background: var(--c-orange);
}

.hero-entry {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius-md);
  color: var(--c-text);
  min-height: 120px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.hero-entry--green {
  background: linear-gradient(145deg, #0E8F7A, #00BFA0);
}

.hero-entry--blue {
  background: linear-gradient(145deg, #0E5B78, #007FAD);
  transform: rotate(-3deg);
}

.hero-entry--green:hover,
.hero-entry--blue:hover {
  transform: translateY(-3px) rotate(0deg);
  box-shadow: 0 12px 30px rgba(0, 255, 198, 0.25);
  color: var(--c-text);
}

.hero-entry__num {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.75;
}

.hero-entry__label {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.hero-entry__arrow {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 22px;
  opacity: 0.7;
}

.hero-chart {
  grid-column: 1 / -1;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}

.hero-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--c-violet), var(--c-blue), var(--c-green), var(--c-orange));
}

.hero-chart__label {
  font-size: 13px;
  color: var(--c-text-dim);
}

.hero-chart__num {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 900;
  color: var(--c-green);
  line-height: 1;
}

.hero-chart__desc {
  font-size: 13px;
  color: var(--c-text-dim);
  font-family: var(--font-mono);
}

/* ==================== 赛事速览 ==================== */
.home-matches {
  padding: 56px 0;
  background: var(--c-bg);
}

.home-tabs {
  position: relative;
}

.home-tabs__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-tabs__bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.home-tabs__label {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-dim);
  background: var(--c-bg-raise);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  user-select: none;
}

.home-tabs__label:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

#tabAll:checked ~ .home-tabs__bar label[for="tabAll"],
#tabSpain:checked ~ .home-tabs__bar label[for="tabSpain"],
#tabEngland:checked ~ .home-tabs__bar label[for="tabEngland"],
#tabItaly:checked ~ .home-tabs__bar label[for="tabItaly"],
#tabGermany:checked ~ .home-tabs__bar label[for="tabGermany"],
#tabFrance:checked ~ .home-tabs__bar label[for="tabFrance"] {
  background: var(--c-green);
  color: #06222B;
  border-color: var(--c-green);
}

.home-tabs__panels {
  position: relative;
}

.home-tabs__panel {
  display: none;
}

#tabAll:checked ~ .home-tabs__panels .home-tabs__panel--all,
#tabSpain:checked ~ .home-tabs__panels .home-tabs__panel--spain,
#tabEngland:checked ~ .home-tabs__panels .home-tabs__panel--england,
#tabItaly:checked ~ .home-tabs__panels .home-tabs__panel--italy,
#tabGermany:checked ~ .home-tabs__panels .home-tabs__panel--germany,
#tabFrance:checked ~ .home-tabs__panels .home-tabs__panel--france {
  display: block;
  animation: home-tab-fade 0.3s var(--ease-out);
}

@keyframes home-tab-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.match-card {
  background: var(--c-bg-raise);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.match-card:hover {
  border-color: var(--c-blue);
  transform: translateY(-2px);
}

.match-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(transparent, var(--c-green));
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.match-card:hover::after {
  opacity: 1;
}

.match-card--live::before {
  content: "LIVE";
  position: absolute;
  top: 14px;
  right: -28px;
  background: var(--c-orange);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 32px;
  transform: rotate(45deg);
}

.match-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.match-card__league {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-blue);
  background: rgba(0, 212, 255, 0.08);
  padding: 2px 8px;
  border-radius: 2px;
}

.match-card__live {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-orange);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.match-card__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
  animation: home-pulse 1s infinite;
}

.match-card__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-text-dim);
}

.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.match-card__teams span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.match-card__score {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 900;
  color: var(--c-green);
  background: #06222B;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.match-card__vs {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-text-dim);
  letter-spacing: 1px;
}

.match-card__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-text-dim);
  font-family: var(--font-mono);
  border-top: 1px solid rgba(43, 58, 74, 0.5);
  padding-top: 8px;
}

/* 数据对照块 */
.home-data-block {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.home-data-block__image {
  background: #0A1E2A;
}

.home-data-block__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.home-data-block__desc {
  padding: 20px 18px 24px;
}

.home-data-block__desc h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 10px 0 8px;
}

.home-data-block__desc p {
  color: var(--c-text-dim);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ==================== 入口导航 ==================== */
.home-guide {
  padding: 56px 0;
  background: var(--c-bg-raise);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

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

.guide-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.guide-card--data {
  background: var(--c-bg-deep);
}

.guide-card__visual {
  position: relative;
  min-height: 220px;
  background: #0A1E2A;
  overflow: hidden;
}

.guide-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.guide-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(0, 255, 198, 0.1) 60%, rgba(0, 212, 255, 0.15));
  pointer-events: none;
}

.guide-card__body {
  padding: 20px 18px 24px;
}

.guide-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 10px 0 8px;
  letter-spacing: 0.5px;
}

.guide-card__body p {
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.8;
  margin: 0 0 16px;
}

.guide-card__points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.guide-card__points li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--c-text);
  border-bottom: 1px solid rgba(43, 58, 74, 0.5);
  position: relative;
  padding-left: 20px;
}

.guide-card__points li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--c-green);
}

.guide-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 18px;
}

.guide-stat {
  text-align: center;
  padding: 12px 6px;
  background: var(--c-bg-raise);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
}

.guide-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 900;
  color: var(--c-green);
  line-height: 1;
}

.guide-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-text-dim);
}

.guide-card__visual--right {
  min-height: 150px;
  background: linear-gradient(145deg, #071B28, #0E3345);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--c-border);
}

.guide-card__flow {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.guide-card__flow-line {
  animation: home-dash-flow 14s linear infinite;
}

.guide-card__flow-line--blue {
  animation-duration: 20s;
  animation-direction: reverse;
}

@keyframes home-dash-flow {
  to { stroke-dashoffset: -160; }
}

/* ==================== 折叠菜单 ==================== */
.home-fold {
  padding: 56px 0;
}

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

.home-fold__intro p {
  font-size: 15px;
  color: var(--c-text-dim);
  line-height: 1.9;
  margin-bottom: 18px;
}

.home-fold__tip {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0, 255, 198, 0.06);
  border: 1px solid rgba(0, 255, 198, 0.2);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--c-text);
  margin-bottom: 18px;
}

.home-fold__tip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-green);
  color: #06222B;
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

.home-fold__help-link {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-blue);
  border-bottom: 1px dashed var(--c-border);
  padding-bottom: 2px;
}

.home-fold__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fold-item {
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.fold-item[open] {
  border-color: rgba(0, 255, 198, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.fold-item__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  user-select: none;
}

.fold-item__summary::-webkit-details-marker {
  display: none;
}

.fold-item__index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 198, 0.4);
  border-radius: 4px;
  background: rgba(0, 255, 198, 0.06);
  flex-shrink: 0;
}

.fold-item__title {
  flex: 1;
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  transition: color 0.2s;
}

.fold-item[open] .fold-item__title {
  color: var(--c-green);
}

.fold-item__arrow {
  font-size: 18px;
  color: var(--c-text-dim);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.fold-item[open] .fold-item__arrow {
  transform: rotate(45deg);
  color: var(--c-green);
}

.fold-item__content {
  padding: 0 18px 18px 56px;
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.8;
}

.fold-item__content p {
  margin: 0 0 12px;
}

.fold-item__link {
  color: var(--c-green);
  font-size: 13px;
  border-bottom: 1px dashed rgba(0, 255, 198, 0.4);
  padding-bottom: 2px;
}

/* ==================== 官方动态 ==================== */
.home-updates {
  padding: 56px 0;
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-border);
}

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

.update-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.update-card:hover {
  transform: translateY(-3px);
  border-color: var(--c-blue);
}

.update-card__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.update-card__body {
  padding: 18px;
}

.update-card__body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 10px 0 6px;
  line-height: 1.4;
}

.update-card__body p {
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.7;
  margin: 0 0 12px;
}

.update-card__body a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
}

.home-updates__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}

.home-updates__contact {
  font-size: 14px;
  color: var(--c-text-dim);
  padding-bottom: 3px;
  border-bottom: 1px dashed var(--c-border);
}

.home-updates__contact:hover {
  color: var(--c-orange);
}

/* ==================== 品牌信任条 ==================== */
.home-trust {
  padding: 32px 0;
  text-align: center;
  background: var(--c-bg);
}

.home-trust__slogan {
  font-size: 14px;
  color: var(--c-text-dim);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  margin: 0 0 14px;
}

.home-trust__links {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

.home-trust__links a {
  color: var(--c-blue);
}

.home-trust__links a:hover {
  color: var(--c-green);
}

.home-trust__sep {
  color: var(--c-border);
}

/* ==================== 按钮共享 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-green);
  color: #06222B;
}

.btn--primary:hover {
  background: #7AFFE0;
  color: #06222B;
  box-shadow: 0 8px 24px rgba(0, 255, 198, 0.25);
}

.btn--ghost {
  background: transparent;
  border-color: var(--c-border);
  color: var(--c-text);
}

.btn--ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}

/* ==================== 响应式桌面端 ==================== */
@media (min-width: 900px) {
  .home-hero {
    padding: 64px 40px 72px;
  }

  .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }

  .home-hero__board {
    max-width: 560px;
    gap: 20px;
  }

  .hero-score__team {
    font-size: 18px;
  }

  .hero-score__score {
    font-size: 38px;
  }

  .home-matches__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .home-data-block {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .home-data-block__desc {
    padding: 32px 36px;
  }

  .home-guide__grid {
    gap: 40px;
  }

  .guide-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .guide-card--data {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .guide-card__visual {
    min-height: 320px;
  }

  .guide-card--data .guide-card__visual--right {
    order: 2;
    border-top: 0;
    border-left: 1px solid var(--c-border);
    min-height: 320px;
  }

  .guide-card--data .guide-card__body {
    order: 1;
  }

  .guide-card__body {
    padding: 32px 32px 32px 28px;
  }

  .home-fold__layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

  .home-fold__intro {
    position: sticky;
    top: 32px;
    align-self: start;
  }

  .home-updates__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .update-card {
    grid-template-columns: 1fr;
  }

  .update-card__img {
    height: 180px;
    object-fit: cover;
  }
}

@media (min-width: 1200px) {
  .home-matches__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-hero__inner {
    width: min(100% - 80px, 1400px);
  }
}
