.page-home {
  --home-grid: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, 0.025) 39px, rgba(255, 255, 255, 0.025) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, 0.025) 39px, rgba(255, 255, 255, 0.025) 40px);
  --home-glow-violet: radial-gradient(ellipse 60% 40% at 85% 15%, rgba(139, 92, 246, 0.14), transparent 70%);
  --home-glow-cyan: radial-gradient(ellipse 50% 40% at 10% 50%, rgba(0, 212, 255, 0.08), transparent 70%);
  --home-glow-orange: radial-gradient(ellipse 40% 30% at 90% 80%, rgba(255, 92, 40, 0.1), transparent 70%);
  position: relative;
  background:
    var(--home-glow-violet),
    var(--home-glow-cyan),
    var(--home-glow-orange),
    var(--home-grid),
    var(--bg-void);
  overflow: hidden;
}

.page-home .container {
  position: relative;
  z-index: 2;
}

/* ========== 内容目录 ========== */
.page-home .home-catalog {
  position: relative;
  padding: var(--space-section) 0 calc(var(--space-block) * 0.75);
}

.page-home .catalog-atmosphere {
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: 62%;
  max-width: 1200px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: screen;
}

.page-home .catalog-atmosphere img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black 30%, transparent 75%);
}

.page-home .catalog-side {
  position: relative;
  z-index: 2;
}

.page-home .catalog-h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.page-home .h1-suffix {
  display: block;
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  margin-top: 0.35rem;
}

.page-home .catalog-lead {
  max-width: 42ch;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.page-home .catalog-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .catalog-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.page-home .catalog-stat .stat-label {
  font-family: var(--font-data);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.page-home .catalog-stat .stat-number {
  font-family: var(--font-data);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(12deg, var(--accent-plasma), var(--accent-pulse) 55%, var(--text-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.page-home .catalog-index-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-home .catalog-index-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr 2rem;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.25rem;
  background: linear-gradient(135deg, rgba(18, 26, 45, 0.9), rgba(18, 26, 45, 0.55));
  border: 1px solid var(--line-thin);
  border-left: 3px solid var(--accent-plasma);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  text-decoration: none;
  transition: border-color 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  overflow: hidden;
}

.page-home .catalog-index-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, transparent 10%, rgba(139, 92, 246, 0.12) 40%, rgba(0, 212, 255, 0.1) 60%, transparent 90%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-smooth);
  pointer-events: none;
}

.page-home .catalog-index-item:hover {
  border-color: rgba(0, 212, 255, 0.55);
  background: linear-gradient(135deg, rgba(27, 39, 64, 0.95), rgba(18, 26, 45, 0.7));
  transform: translateX(4px);
}

.page-home .catalog-index-item:hover::before {
  transform: translateX(0);
}

.page-home .catalog-index-item:focus-visible {
  outline: 2px solid var(--accent-pulse);
  outline-offset: 3px;
}

.page-home .index-num {
  font-family: var(--font-data);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-volt);
  line-height: 1.2;
  padding-top: 0.2rem;
}

.page-home .index-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.page-home .index-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: color 0.2s;
}

.page-home .catalog-index-item:hover .index-name {
  color: #fff;
}

.page-home .index-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.page-home .index-arrow {
  color: var(--accent-plasma);
  font-size: 1.25rem;
  text-align: right;
  line-height: 1.4;
  transition: transform 0.2s var(--ease-smooth);
}

.page-home .catalog-index-item:hover .index-arrow {
  transform: translateX(4px);
}

/* ========== 观赛第一步 / 主题声明 ========== */
.page-home .home-manifesto {
  position: relative;
  padding: var(--space-block) 0;
  border-top: 1px solid var(--line-thin);
  border-bottom: 1px solid var(--line-thin);
  background:
    linear-gradient(100deg, rgba(139, 92, 246, 0.09), transparent 35%),
    linear-gradient(260deg, rgba(255, 92, 40, 0.07), transparent 40%),
    rgba(18, 26, 45, 0.5);
}

.page-home .manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-home .manifesto-text {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0.5rem 0 1.25rem;
  position: relative;
}

.page-home .manifesto-text::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--accent-volt), var(--accent-plasma), var(--accent-pulse));
}

.page-home .manifesto-desc {
  color: var(--text-secondary);
  max-width: 46ch;
  line-height: 1.8;
}

.page-home .manifesto-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.page-home .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.page-home .badge-live {
  background: rgba(255, 92, 40, 0.12);
  border: 1px solid rgba(255, 92, 40, 0.4);
  color: var(--accent-volt);
}

.page-home .badge-updated {
  background: rgba(107, 174, 117, 0.12);
  border: 1px solid rgba(107, 174, 117, 0.35);
  color: var(--mineral-moss);
}

.page-home .badge-alert {
  background: rgba(210, 105, 74, 0.12);
  border: 1px solid rgba(210, 105, 74, 0.35);
  color: var(--mineral-terracotta);
}

/* ========== 本周赛程 ========== */
.page-home .home-schedule {
  position: relative;
  padding: var(--space-section) 0;
}

.page-home .schedule-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-home .schedule-head h2,
.page-home .replay-copy h2,
.page-home .help-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0.4rem 0 0;
  color: var(--text-primary);
  line-height: 1.05;
}

.page-home .schedule-note {
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line-thin);
  border-radius: 4px;
  background: rgba(18, 26, 45, 0.6);
}

.page-home .schedule-layout {
  display: grid;
  gap: 2rem;
}

.page-home .mini-timeline {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-bottom: 1.5rem;
}

.page-home .schedule-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-thin);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 26, 45, 0.85), rgba(11, 15, 26, 0.7));
}

.page-home .schedule-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.page-home .schedule-table thead th {
  font-family: var(--font-data);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  text-align: left;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line-thin);
  background: rgba(27, 39, 64, 0.3);
}

.page-home .schedule-table tbody td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-thin);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.page-home .schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.page-home .schedule-table tbody tr {
  position: relative;
  transition: background 0.2s var(--ease-smooth);
}

.page-home .schedule-table tbody tr:hover {
  background: rgba(139, 92, 246, 0.1);
}

.page-home .schedule-table tbody tr td:first-child {
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.page-home .schedule-table tbody tr:hover td:first-child {
  border-left-color: var(--accent-pulse);
}

.page-home .region-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.page-home .region-cn {
  background: rgba(255, 92, 40, 0.12);
  color: var(--accent-volt);
  border: 1px solid rgba(255, 92, 40, 0.3);
}

.page-home .region-eu {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-plasma);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.page-home .region-sea {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-pulse);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.page-home .region-na {
  background: rgba(107, 174, 117, 0.1);
  color: var(--mineral-moss);
  border: 1px solid rgba(107, 174, 117, 0.3);
}

.page-home .schedule-table tbody td strong {
  font-weight: 600;
  color: var(--text-primary);
}

.page-home .timeline-link {
  display: inline-block;
  color: var(--accent-pulse);
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.page-home .timeline-link:hover,
.page-home .timeline-link:focus-visible {
  opacity: 1;
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.08);
}

.page-home .schedule-table tbody tr:hover .timeline-link {
  opacity: 1;
}

.page-home .schedule-figure {
  margin: 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  background: linear-gradient(135deg, rgba(27, 39, 64, 0.9), rgba(18, 26, 45, 0.8));
  border: 1px solid var(--line-thin);
  transition: border-color 0.3s var(--ease-smooth);
}

.page-home .schedule-figure:hover {
  border-color: rgba(0, 212, 255, 0.45);
}

.page-home .schedule-figure img,
.page-home .replay-figure img,
.page-home .help-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .schedule-figure img {
  max-height: 480px;
}

.page-home .schedule-figure figcaption,
.page-home .replay-figure figcaption,
.page-home .help-figure figcaption {
  padding: 0.8rem 1.1rem;
  font-family: var(--font-data);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  border-top: 1px solid var(--line-thin);
}

/* ========== 回放时间轴 ========== */
.page-home .home-replay {
  position: relative;
  padding: var(--space-section) 0;
  background:
    linear-gradient(265deg, rgba(139, 92, 246, 0.08), transparent 55%),
    linear-gradient(95deg, rgba(0, 212, 255, 0.04), transparent 40%);
  border-top: 1px solid var(--line-thin);
  border-bottom: 1px solid var(--line-thin);
}

.page-home .replay-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .replay-copy {
  order: 1;
}

.page-home .replay-main {
  margin-top: 1.25rem;
  max-width: 48ch;
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-home .replay-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.page-home .replay-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-home .replay-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-pulse);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.page-home .replay-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .btn {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s var(--ease-smooth), box-shadow 0.2s, background 0.2s;
}

.page-home .btn-primary {
  background: linear-gradient(135deg, var(--accent-volt), #d9471f);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 40, 0.3);
}

.page-home .btn-outline {
  background: transparent;
  color: var(--accent-plasma);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 4px;
}

.page-home .btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--accent-plasma);
  transform: translateY(-2px);
}

.page-home .btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--line-thin);
  border-radius: 0;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.page-home .btn-ghost:hover {
  color: var(--accent-pulse);
  border-bottom-color: var(--accent-pulse);
}

.page-home .replay-figure {
  margin: 0;
  position: relative;
  order: 2;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line-thin);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(18, 26, 45, 0.6);
  transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.page-home .replay-figure:hover {
  border-color: rgba(0, 212, 255, 0.45);
  transform: rotate(-1deg);
}

.page-home .replay-figure img {
  max-height: 520px;
  object-fit: cover;
}

/* ========== 帮助中心 ========== */
.page-home .home-help {
  position: relative;
  padding: var(--space-section) 0;
}

.page-home .help-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .help-figure {
  margin: 0;
  border: 1px solid var(--line-thin);
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(18, 26, 45, 0.9), rgba(11, 15, 26, 0.8));
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transition: border-color 0.3s var(--ease-smooth);
}

.page-home .help-figure:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.page-home .help-figure img {
  max-height: 400px;
  object-fit: cover;
}

.page-home .help-main {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 48ch;
}

.page-home .help-links {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-home .help-links li {
  border-bottom: 1px solid var(--line-thin);
  transition: border-color 0.2s, padding-left 0.2s var(--ease-smooth);
}

.page-home .help-links li:hover {
  border-bottom-color: rgba(139, 92, 246, 0.5);
  padding-left: 0.35rem;
}

.page-home .help-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.2rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.page-home .help-links a:hover {
  color: var(--accent-pulse);
}

.page-home .help-count {
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--text-secondary);
  background: rgba(139, 92, 246, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ========== 响应式增强 ========== */
@media (min-width: 768px) {
  .page-home .catalog-wrap {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .page-home .catalog-index-list {
    margin-top: 0;
  }

  .page-home .schedule-layout {
    grid-template-columns: 1fr;
  }

  .page-home .replay-layout {
    grid-template-columns: 7fr 5fr;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .page-home .help-layout {
    grid-template-columns: 6fr 6fr;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .page-home .replay-copy {
    order: initial;
  }

  .page-home .replay-figure {
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .page-home .schedule-layout {
    grid-template-columns: 7fr 5fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .page-home .help-layout {
    grid-template-columns: 5fr 7fr;
  }

  .page-home .help-figure {
    order: initial;
  }

  .page-home .help-copy {
    order: initial;
  }

  .page-home .catalog-atmosphere {
    width: 52%;
    bottom: -12%;
  }

  .page-home .manifesto-text {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
  }
}

@media (min-width: 1400px) {
  .page-home .catalog-atmosphere {
    width: 44%;
    right: -3%;
    bottom: -15%;
  }
}
