.page-home {
  --home-pad: clamp(20px, 4vw, 48px);
  --home-corner: 18px;
  --home-match-radius: 12px;
  background: var(--c-deep);
  color: var(--c-white);
  overflow-x: hidden;
}

/* ==================== 首屏 ==================== */
.page-home .home-hero {
  position: relative;
  padding: var(--home-pad) 0 64px;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 255, 135, 0.08), transparent 26%),
    linear-gradient(135deg, transparent 60%, rgba(255, 107, 53, 0.06) 100%),
    var(--c-deep);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.04) 79px 80px),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(255, 255, 255, 0.04) 79px 80px);
}

.page-home .home-hero__stage {
  position: relative;
  padding: 28px 20px 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(30, 58, 95, 0.3), transparent 50%),
    rgba(11, 15, 25, 0.35);
}

.page-home .home-hero__corner {
  position: absolute;
  width: var(--home-corner);
  height: var(--home-corner);
  border-color: var(--c-orange);
  border-style: solid;
  z-index: 2;
}

.page-home .home-hero__corner--tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; }
.page-home .home-hero__corner--tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; }
.page-home .home-hero__corner--bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; }
.page-home .home-hero__corner--br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; }

.page-home .home-hero__scale {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
}

.page-home .home-hero__scale--top {
  top: 3px;
  left: 60px;
  right: 60px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--c-gray) 0 2px, transparent 2px 12px);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.page-home .home-hero__scale--side {
  left: 3px;
  top: 60px;
  bottom: 60px;
  width: 6px;
  background: repeating-linear-gradient(0deg, var(--c-gray) 0 2px, transparent 2px 12px);
  mask-image: linear-gradient(0deg, transparent, #000 12%, #000 88%, transparent);
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.page-home .home-hero__accent {
  display: block;
  color: var(--c-orange);
}

.page-home .home-hero__lead {
  margin: 12px 0 20px;
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 46em;
}

/* 日期标签 */
.page-home .home-date-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.page-home .home-date-tabs__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--c-gray);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  cursor: pointer;
  transition: all var(--ease-fast);
}

.page-home .home-date-tabs__btn:hover,
.page-home .home-date-tabs__btn:focus-visible {
  color: var(--c-white);
  border-color: var(--c-orange);
}

.page-home .home-date-tabs__btn.is-active {
  background: var(--c-orange);
  border-color: var(--c-orange);
  color: #fff;
  font-weight: 600;
}

.page-home .home-date-tabs__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 13px;
  color: var(--c-green);
  letter-spacing: 0.05em;
}

.page-home .home-date-tabs__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.5);
  animation: home-pulse 2s infinite;
}

@keyframes home-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 135, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 135, 0); }
}

/* 联赛筛选 */
.page-home .home-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.page-home .home-filter-tags__btn {
  appearance: none;
  border: 1px solid rgba(176, 184, 196, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-gray);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all var(--ease-fast);
}

.page-home .home-filter-tags__btn:hover,
.page-home .home-filter-tags__btn:focus-visible {
  color: var(--c-white);
  border-color: var(--c-green);
}

.page-home .home-filter-tags__btn.is-active {
  background: rgba(0, 255, 135, 0.14);
  border-color: var(--c-green);
  color: var(--c-green);
  font-weight: 500;
}

/* 赛程窗口 */
.page-home .home-scoreboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .home-match {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #182c4d, #0f2138);
  border-left: 3px solid var(--c-orange);
  padding: 14px 14px 10px;
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .home-match::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(255, 255, 255, 0.02) 8px 9px);
  pointer-events: none;
}

.page-home .home-match:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-panel);
}

.page-home .home-match__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--c-gray);
}

.page-home .home-match__league {
  background: var(--c-mid);
  color: #d8e0eb;
  padding: 1px 8px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.page-home .home-match__time {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.page-home .home-match__status {
  margin-left: auto;
  font-size: 12px;
  color: var(--c-green);
  border: 1px solid rgba(0, 255, 135, 0.35);
  padding: 1px 8px;
  border-radius: 999px;
}

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

.page-home .home-match__team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.page-home .home-match__team:last-of-type {
  flex-direction: row-reverse;
  text-align: right;
}

.page-home .home-match__badge {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-home .home-match__badge--ars { background: linear-gradient(145deg, #e63946, #8d0801); }
.page-home .home-match__badge--che { background: linear-gradient(145deg, #3a86ff, #0b3c8c); }
.page-home .home-match__badge--rma { background: linear-gradient(145deg, #f7f9fb, #c3cedb); color: #0b0f19; }
.page-home .home-match__badge--sev { background: linear-gradient(145deg, #ff6b35, #b02e00); }
.page-home .home-match__badge--fcb { background: linear-gradient(145deg, #c62839, #6e0f1a); }
.page-home .home-match__badge--rbl { background: linear-gradient(145deg, #e8edf3, #aab8c7); color: #0b0f19; }
.page-home .home-match__badge--int { background: linear-gradient(145deg, #1e3a5f, #0a0f1a); }
.page-home .home-match__badge--acm { background: linear-gradient(145deg, #b91c1c, #111827); }

.page-home .home-match__name {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-match__vs {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--c-orange);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.page-home .home-match__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 6px;
  font-size: 12px;
  color: var(--c-gray);
}

.page-home .home-match__link {
  color: var(--c-green);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.page-home .home-match__link:hover,
.page-home .home-match__link:focus-visible {
  color: var(--c-orange);
}

.page-home .home-hero__more {
  width: 100%;
  text-align: center;
}

/* 首屏侧边 */
.page-home .home-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-hero__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: skewY(-1.2deg) scale(1.04);
}

.page-home .home-hero__caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 15, 25, 0.8);
  border-left: 3px solid var(--c-green);
  padding: 6px 12px;
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.05em;
}

.page-home .home-hero__caption-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-orange);
  margin-right: 6px;
  border-radius: 50%;
}

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .home-hero__stat {
  background: rgba(30, 58, 95, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 8px;
  text-align: center;
}

.page-home .home-hero__stat-num {
  color: var(--c-orange);
  font-size: 30px;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.page-home .home-hero__stat-unit {
  font-size: 18px;
  color: var(--c-orange-soft);
  margin-left: 2px;
}

.page-home .home-hero__stat-label {
  font-size: 12px;
  color: var(--c-gray);
  letter-spacing: 0.04em;
}

/* ==================== 球队库 ==================== */
.page-home .home-league {
  position: relative;
  background: var(--c-light);
  color: var(--c-dark);
  padding: var(--home-pad) 0 64px;
}

.page-home .home-league__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .home-league__head .btn {
  align-self: flex-start;
}

.page-home .home-league__desc {
  color: #4a5a6e;
  font-size: 15px;
  line-height: 1.7;
  max-width: 46em;
}

.page-home .home-league__banner {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 25, 0.12);
  background: var(--c-white);
}

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

.page-home .home-league__banner-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 25, 48, 0.82);
  color: var(--c-green);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border: 1px solid rgba(0, 255, 135, 0.3);
}

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

.page-home .home-league__group {
  background: var(--c-white);
  border: 1px solid rgba(11, 15, 25, 0.08);
  padding: 16px 14px 18px;
  box-shadow: 0 4px 14px rgba(10, 25, 48, 0.05);
}

.page-home .home-league__group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-deep);
  color: var(--c-deep);
}

.page-home .home-league__group-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--c-orange), transparent);
}

.page-home .home-league__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.page-home .home-team {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  border: 1px solid rgba(11, 15, 25, 0.08);
  border-radius: var(--home-match-radius);
  background: #f8fafc;
  text-decoration: none;
  color: var(--c-dark);
  transition: all var(--ease-fast);
  overflow: hidden;
}

.page-home .home-team::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--ease-fast);
}

.page-home .home-team:hover::before,
.page-home .home-team:focus-visible::before {
  transform: scaleY(1);
}

.page-home .home-team:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 25, 48, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
}

.page-home .home-team__badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.page-home .home-team__badge--ars { background: linear-gradient(145deg, #e63946, #8d0801); color: #fff; }
.page-home .home-team__badge--che { background: linear-gradient(145deg, #3a86ff, #0b3c8c); color: #fff; }
.page-home .home-team__badge--mci { background: linear-gradient(145deg, #6cc5fd, #1f86c4); color: #0b0f19; }
.page-home .home-team__badge--liv { background: linear-gradient(145deg, #d62839, #7a0c1e); color: #fff; }
.page-home .home-team__badge--rma { background: linear-gradient(145deg, #f7f9fb, #c3cedb); color: #0b0f19; }
.page-home .home-team__badge--bar { background: linear-gradient(145deg, #a50044, #004d98); color: #fff; }
.page-home .home-team__badge--atm { background: linear-gradient(145deg, #e63a3a, #7a1010); color: #fff; }
.page-home .home-team__badge--sev { background: linear-gradient(145deg, #ff6b35, #b02e00); color: #fff; }
.page-home .home-team__badge--fcb { background: linear-gradient(145deg, #c62839, #6e0f1a); color: #fff; }
.page-home .home-team__badge--bvb { background: linear-gradient(145deg, #ffcc00, #c99400); color: #0b0f19; }
.page-home .home-team__badge--rbl { background: linear-gradient(145deg, #e8edf3, #aab8c7); color: #0b0f19; }
.page-home .home-team__badge--b04 { background: linear-gradient(145deg, #e63946, #8d0801); color: #fff; }
.page-home .home-team__badge--int { background: linear-gradient(145deg, #1e3a5f, #0a0f1a); color: #fff; }
.page-home .home-team__badge--acm { background: linear-gradient(145deg, #b91c1c, #111827); color: #fff; }
.page-home .home-team__badge--juv { background: linear-gradient(145deg, #1a1a1a, #444); color: #fff; }
.page-home .home-team__badge--nap { background: linear-gradient(145deg, #2b8ced, #0b3a6e); color: #fff; }
.page-home .home-team__badge--psg { background: linear-gradient(145deg, #004170, #1e3a5f); color: #fff; }
.page-home .home-team__badge--ol { background: linear-gradient(145deg, #2f6cb2, #102a4d); color: #fff; }
.page-home .home-team__badge--om { background: linear-gradient(145deg, #4fc3f7, #0077b6); color: #fff; }
.page-home .home-team__badge--mon { background: linear-gradient(145deg, #e63946, #7a0c1e); color: #fff; }
.page-home .home-team__badge--shp { background: linear-gradient(145deg, #e63946, #8d0801); color: #fff; }
.page-home .home-team__badge--sdt { background: linear-gradient(145deg, #ff9e4a, #d65c00); color: #0b0f19; }
.page-home .home-team__badge--bjg { background: linear-gradient(145deg, #00a86b, #005f3c); color: #fff; }
.page-home .home-team__badge--crc { background: linear-gradient(145deg, #e63946, #8d0801); color: #fff; }

.page-home .home-team__name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .home-team__record {
  margin-left: auto;
  font-size: 11px;
  color: var(--c-text-cold);
  white-space: nowrap;
}

/* ==================== 票价清单 ==================== */
.page-home .home-ticket {
  position: relative;
  padding: var(--home-pad) 0 64px;
  background:
    radial-gradient(circle at 14% 26%, rgba(255, 158, 74, 0.12), transparent 24%),
    radial-gradient(circle at 86% 68%, rgba(0, 255, 135, 0.1), transparent 26%),
    var(--c-dark);
  overflow: hidden;
}

.page-home .home-ticket__tunnel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, 0.015) 42px 43px),
    linear-gradient(100deg, rgba(255, 107, 53, 0.05), transparent 40%);
  clip-path: polygon(100% 0, 100% 100%, 20% 100%);
}

.page-home .home-ticket__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .home-ticket__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.page-home .home-ticket__desc {
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 42em;
}

.page-home .home-ticket__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.page-home .home-ticket__tier {
  position: relative;
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast);
}

.page-home .home-ticket__tier::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 8px 8px 0 0;
}

.page-home .home-ticket__tier--early {
  background: linear-gradient(200deg, rgba(255, 158, 74, 0.2), rgba(255, 107, 53, 0.06) 70%);
  border-color: rgba(255, 158, 74, 0.45);
}

.page-home .home-ticket__tier--early::before {
  background: linear-gradient(90deg, var(--c-orange-soft), var(--c-orange));
}

.page-home .home-ticket__tier--standard {
  background: linear-gradient(200deg, rgba(30, 58, 95, 0.65), rgba(10, 25, 48, 0.2) 60%);
  border-color: rgba(176, 184, 196, 0.3);
}

.page-home .home-ticket__tier--standard::before {
  background: linear-gradient(90deg, var(--c-gray), #ffffff);
}

.page-home .home-ticket__tier--vip {
  background: linear-gradient(200deg, rgba(0, 255, 135, 0.16), rgba(52, 255, 184, 0.04) 66%);
  border-color: rgba(0, 255, 135, 0.4);
}

.page-home .home-ticket__tier--vip::before {
  background: linear-gradient(90deg, var(--c-green-soft), var(--c-green));
}

.page-home .home-ticket__tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.page-home .home-ticket__tier-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--c-white);
  opacity: 0.9;
}

.page-home .home-ticket__tier-price {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
  color: var(--c-white);
  margin: 4px 0;
}

.page-home .home-ticket__tier--early .home-ticket__tier-price { color: var(--c-orange-soft); }
.page-home .home-ticket__tier--vip .home-ticket__tier-price { color: var(--c-green); }

.page-home .home-ticket__tier-note {
  display: block;
  font-size: 12px;
  color: var(--c-gray);
  line-height: 1.4;
}

.page-home .home-ticket__cta {
  background: linear-gradient(90deg, var(--c-orange) 0%, var(--c-orange-soft) 45%, var(--c-green) 100%);
  border: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  padding: 10px 26px 10px 18px;
  color: #fff;
  font-weight: 600;
  transition: filter var(--ease-fast), box-shadow var(--ease-fast);
}

.page-home .home-ticket__cta:hover,
.page-home .home-ticket__cta:focus-visible {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.page-home .home-ticket__figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewY(-1deg);
}

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

.page-home .home-ticket__figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(11, 15, 25, 0.8);
  border-left: 3px solid var(--c-orange);
  padding: 5px 10px;
  font-size: 13px;
  color: var(--c-white);
}

/* ==================== 最新动态 ==================== */
.page-home .home-news {
  padding: var(--home-pad) 0 64px;
  background: var(--c-deep);
}

.page-home .home-news__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.page-home .home-news__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.page-home .home-news__card {
  background: rgba(30, 58, 95, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 18px 18px 16px;
  transition: all var(--ease-fast);
}

.page-home .home-news__card:hover {
  border-color: rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-panel);
}

.page-home .home-news__card--compact {
  margin-bottom: 12px;
}

.page-home .home-news__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--c-green);
  background: rgba(0, 255, 135, 0.08);
  border: 1px solid rgba(0, 255, 135, 0.28);
  padding: 2px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-home .home-news__card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 6px;
}

.page-home .home-news__card h3 a {
  color: var(--c-white);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.page-home .home-news__card h3 a:hover,
.page-home .home-news__card h3 a:focus-visible {
  color: var(--c-orange);
}

.page-home .home-news__card p {
  font-size: 14px;
  color: var(--c-gray);
  line-height: 1.6;
  margin: 0;
}

/* 折叠面板 */
.page-home .home-news__fold-wrap {
  margin-top: 4px;
}

.page-home .home-news__fold-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--c-gray);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 8px 18px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease-fast);
}

.page-home .home-news__fold-btn:hover,
.page-home .home-news__fold-btn:focus-visible {
  border-color: var(--c-green);
  color: var(--c-green);
}

.page-home .home-news__fold-body {
  margin-top: 14px;
}

/* ==================== 方舟收尾 ==================== */
.page-home .home-ark {
  padding: 48px 0 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(30, 58, 95, 0.6), transparent 50%),
    var(--c-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-ark__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-ark__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.page-home .home-ark__text {
  text-align: center;
}

.page-home .home-ark__text h2 {
  font-size: 30px;
  margin: 10px 0 12px;
  color: var(--c-white);
}

.page-home .home-ark__text p {
  color: var(--c-gray);
  font-size: 15px;
  line-height: 1.7;
  max-width: 48em;
  margin: 0 auto 20px;
}

.page-home .home-ark__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ==================== 响应式 ==================== */
@media (min-width: 640px) {
  .page-home .home-league__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-home .home-ark__inner {
    grid-template-columns: 200px 1fr;
  }

  .page-home .home-ark__text {
    text-align: left;
  }

  .page-home .home-ark__links {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) {
  .page-home .home-league__groups {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .page-home .home-ticket__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
  }

  .page-home .home-ticket__figure {
    transform: skewY(-1deg) rotate(1deg);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
    gap: 36px;
  }

  .page-home .home-hero__stage {
    padding: 40px 36px 44px;
  }

  .page-home .home-scoreboard {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .page-home .home-league__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .home-news__head {
    flex-direction: row;
    align-items: flex-end;
  }
}

@media (min-width: 1280px) {
  .page-home .home-hero__stage {
    padding: 48px 46px 52px;
  }

  .page-home .home-league__groups {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

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

  .page-home .home-ark__inner {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}

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