/* ========== 首页专属样式 ========== */
.page-home {
  --home-hero-gradient: linear-gradient(135deg, #0A1F44 0%, #102A5C 55%, #16406E 100%);
  --home-card-hover: translateY(-5px);
}

/* ===== 公共章节头 ===== */
.page-home .home-section-head {
  max-width: 720px;
  margin-bottom: 32px;
}
.page-home .home-section-head .x-eyebrow {
  color: var(--c-accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-home .home-section-head .x-title {
  margin: 0 0 10px;
}
.page-home .home-section-head .x-text {
  margin: 0;
  color: var(--c-muted);
}

/* ===== 分屏首屏 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: var(--home-hero-gradient);
  color: var(--c-white);
  padding: 56px 0 72px;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.page-home .home-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-home .home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-home .home-crumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.page-home .home-crumb__item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}
.page-home .home-crumb__item::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.35);
}
.page-home .home-crumb__item:last-child::after {
  display: none;
}
.page-home .home-crumb__item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.page-home .home-crumb__item a:hover {
  color: var(--c-accent);
}
.page-home .home-crumb__item--current {
  color: rgba(255, 138, 80, 0.95);
}
.page-home .home-hero__eyebrow {
  color: var(--c-accent);
  background: rgba(255, 107, 0, 0.16);
  border: 1px solid rgba(255, 107, 0, 0.32);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--c-white);
  letter-spacing: 0.015em;
  max-width: 9.5em;
}
.page-home .home-hero__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36em;
  margin: 0 0 30px;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__actions .x-btn--primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.page-home .home-hero__actions .x-btn--primary:hover {
  background: var(--c-accent-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.page-home .home-hero__actions .x-btn--ghost {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.page-home .home-hero__actions .x-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--c-white);
}
.page-home .home-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-home .home-hero__svg {
  width: 100%;
  height: auto;
  max-width: 560px;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== 周中周末赛历时间线 ===== */
.page-home .home-schedule {
  background: var(--c-bg);
}
.page-home .home-schedule__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .home-schedule__col {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 24px 24px 12px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-primary);
}
.page-home .home-schedule__col--weekend {
  border-top-color: var(--c-accent);
}
.page-home .home-schedule__col-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 14px;
  color: var(--c-body);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-home .home-schedule__col-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}
.page-home .home-schedule__match {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
}
.page-home .home-schedule__match:last-of-type {
  border-bottom: 0;
}
.page-home .home-schedule__time {
  font-family: var(--font-data);
  font-size: 0.82rem;
  color: var(--c-muted);
}
.page-home .home-schedule__tag {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  font-size: 0.75rem;
  padding: 2px 8px;
}
.page-home .home-schedule__teams {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--c-body);
}

/* ===== 联赛专题与射手榜 ===== */
.page-home .home-league {
  background: var(--c-bg);
}
.page-home .home-league__grid {
  margin-bottom: 32px;
}
.page-home .home-league__card {
  padding: 24px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.page-home .home-league__card:hover {
  transform: var(--home-card-hover);
  box-shadow: var(--shadow-md);
}
.page-home .home-league__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-home .home-league__card-head h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0;
}
.page-home .home-league__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.page-home .home-league__table th,
.page-home .home-league__table td {
  text-align: right;
  padding: 10px 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--c-line);
}
.page-home .home-league__table th:first-child,
.page-home .home-league__table td:first-child {
  text-align: left;
}
.page-home .home-league__table th:nth-child(2),
.page-home .home-league__table td:nth-child(2) {
  text-align: left;
}
.page-home .home-league__table thead th {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--c-line);
}
.page-home .home-league__table tbody td {
  font-family: var(--font-data);
  font-weight: 600;
}
.page-home .home-league__table tbody td:first-child {
  color: var(--c-accent);
  font-family: var(--font-data);
}
.page-home .home-league__table tbody tr:nth-child(even) {
  background: #F8FAFC;
}
.page-home .home-league__note {
  color: var(--c-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 16px 0 0;
}
.page-home .home-league__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===== 服务台赛事统计核对 ===== */
.page-home .home-service {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 72px 0;
}
.page-home .home-service__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.page-home .home-service__eyebrow {
  color: var(--c-accent);
  background: rgba(255, 107, 0, 0.14);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.page-home .home-service__title {
  color: var(--c-white);
}
.page-home .home-service__desc {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  max-width: 36em;
  margin: 16px 0 24px;
}
.page-home .home-service__checks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.page-home .home-service__checks li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-data);
  font-size: 0.85rem;
}
.page-home .home-service__checks li::before {
  content: "✓";
  color: var(--c-accent);
  margin-right: 12px;
  font-weight: 700;
}
.page-home .home-service__link {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.page-home .home-service__link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--c-white);
}
.page-home .home-service__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}
.page-home .home-service__stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.page-home .home-service__stat:hover {
  background: rgba(255, 107, 0, 0.12);
  transform: translateY(-3px);
}
.page-home .home-service__num {
  display: block;
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.page-home .home-service__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== 周日关注列表与双场连战 ===== */
.page-home .home-sunday {
  background: var(--c-bg);
}
.page-home .home-sunday__grid {
  margin-top: 4px;
}
.page-home .home-sunday__card {
  padding: 0;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.page-home .home-sunday__card:hover {
  transform: var(--home-card-hover);
  box-shadow: var(--shadow-md);
}
.page-home .home-sunday__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.page-home .home-sunday__body {
  padding: 20px;
}
.page-home .home-sunday__tag {
  background: rgba(255, 107, 0, 0.1);
  color: var(--c-accent);
  font-size: 0.75rem;
}
.page-home .home-sunday__body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 10px 0 6px;
  color: var(--c-body);
}
.page-home .home-sunday__text {
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 18px;
}
.page-home .home-sunday__link {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

/* ===== 热点跟踪 ===== */
.page-home .home-hot {
  background: var(--c-bg);
}
.page-home .home-hot__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.page-home .home-hot__list {
  list-style: none;
  padding: 0;
  margin: 20px 0 16px;
}
.page-home .home-hot__item {
  border-bottom: 1px solid var(--c-line);
}
.page-home .home-hot__head {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  list-style: none;
  transition: background 0.2s var(--ease);
  border-radius: var(--radius);
}
.page-home .home-hot__head::-webkit-details-marker {
  display: none;
}
.page-home .home-hot__head:hover {
  background: var(--c-bg);
}
.page-home .home-hot__time {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--c-accent);
  background: rgba(255, 107, 0, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-home .home-hot__title {
  font-weight: 600;
  color: var(--c-body);
  font-size: 0.95rem;
}
.page-home .home-hot__body {
  color: var(--c-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  padding: 0 12px 14px;
  margin: 0;
}
.page-home .home-hot__refresh {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: var(--c-muted);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-block;
  margin: 8px 0 20px;
}
.page-home .home-hot__visual {
  display: flex;
  align-items: flex-start;
}
.page-home .home-hot__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ===== 发展历程 ===== */
.page-home .home-history {
  background: var(--c-surface);
}
.page-home .home-history__inner {
  max-width: 720px;
  margin: 0 auto;
}
.page-home .home-history__timeline {
  border-left: 3px solid var(--c-line);
  margin-top: 28px;
  padding-left: 24px;
}
.page-home .home-history__item {
  position: relative;
  padding-bottom: 24px;
}
.page-home .home-history__item:last-child {
  padding-bottom: 0;
}
.page-home .home-history__item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 3px solid var(--c-surface);
  box-shadow: 0 0 0 1px var(--c-accent);
}
.page-home .home-history__year {
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--c-primary);
  font-size: 1rem;
  display: block;
}
.page-home .home-history__item p {
  margin: 4px 0 0;
  color: var(--c-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== 底部信任 ===== */
.page-home .home-trust {
  background: linear-gradient(90deg, rgba(10, 31, 68, 0.04), rgba(255, 107, 0, 0.06), rgba(10, 31, 68, 0.04));
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 48px 0;
}
.page-home .home-trust__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.page-home .home-trust__statement {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--c-body);
  max-width: 36em;
  margin: 0;
}
.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-home .home-trust__links a {
  color: var(--c-primary);
  text-decoration: none;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  background: var(--c-surface);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.page-home .home-trust__links a:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

/* ===== 响应式增强 ===== */
@media (min-width: 768px) {
  .page-home .home-schedule__match {
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }
  .page-home .home-schedule__tag {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }
  .page-home .home-schedule__teams {
    grid-column: auto;
  }
  .page-home .home-service__stats {
    gap: 20px;
  }
  .page-home .home-sunday__img {
    height: 180px;
  }
}
@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 88px;
  }
  .page-home .home-hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
  }
  .page-home .home-schedule__layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .page-home .home-service__inner {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .home-hot__layout {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: start;
  }
  .page-home .home-sunday__img {
    height: 170px;
  }
}
</html>
