.page-home {
  --home-hero-bg: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(11, 15, 25, 0.9) 60%, rgba(6, 182, 212, 0.15) 100%);
  --home-card-border: 1px solid #334155;
  --home-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --home-shadow-neon: 0 0 22px rgba(124, 58, 237, 0.35);
  --home-clip-angle: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
  --home-font-display: "Space Grotesk", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-body: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --home-font-mono: "JetBrains Mono", "Noto Sans Mono", Consolas, monospace;

  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 6rem);
  padding: 0 1.25rem;
  color: #E2E8F0;
  font-family: var(--home-font-body);
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: clip;
}

.breadcrumb {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: #94A3B8;
}

.breadcrumb a {
  color: #06B6D4;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #7C3AED;
}

.breadcrumb li:last-child {
  color: #94A3B8;
}

.page-home h1,
.page-home h2,
.page-home h3 {
  font-family: var(--home-font-display);
  letter-spacing: -0.02em;
}

/* ===== 首屏 ===== */
.home-hero {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  background: var(--home-hero-bg);
  border-bottom: 2px solid #7C3AED;
}

.home-hero_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1.5rem 5rem;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: #F97316;
  font-family: var(--home-font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  background: linear-gradient(90deg, #E2E8F0 30%, #7C3AED 70%, #06B6D4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-lead {
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #C0C8D9;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-primary {
  background: #7C3AED;
  color: #F1F5F9;
  border: 1px solid #7C3AED;
}

.btn-ghost {
  background: transparent;
  color: #E2E8F0;
  border: 1px solid #334155;
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.media-frame {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #1E293B;
  border: 1px solid #334155;
}

.media-frame--hero,
.media-frame--focus,
.media-frame--lineup {
  width: 100%;
}

.media-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.media-frame--hero {
  transform: rotate(-1.5deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.media-frame--hero::after {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.media-frame--hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-stat {
  background: #1E293B;
  border: 1px solid #334155;
  border-left: 4px solid #7C3AED;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-radius: 0 4px 4px 0;
}

.hero-stat_num {
  font-family: var(--home-font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: #7C3AED;
  letter-spacing: -0.03em;
}

.hero-stat_label {
  font-size: 0.85rem;
  color: #94A3B8;
}

.hero-beam {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 1;
  pointer-events: none;
}

.hero-beam svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== 章节通用 ===== */
.section {
  scroll-margin-top: 1.5rem;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--home-font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #F97316;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: #E2E8F0;
}

.section-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #94A3B8;
}

/* ===== 筛选按钮 ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  appearance: none;
  background: transparent;
  border: 1px solid #334155;
  color: #94A3B8;
  font-family: var(--home-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: #06B6D4;
  color: #E2E8F0;
}

.filter-btn.is-active {
  background: #7C3AED;
  border-color: #7C3AED;
  color: #F1F5F9;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}

/* ===== 栏目导览 ===== */
.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.channel-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-top: 4px solid #7C3AED;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0 4px 4px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.channel-card:nth-child(2) {
  border-top-color: #06B6D4;
}

.channel-card:nth-child(3) {
  border-top-color: #F97316;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
  width: 120px;
  height: 120px;
  margin-bottom: 0.5rem;
}

.media-frame--square img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.channel-card_title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E2E8F0;
}

.channel-card_text {
  margin: 0;
  line-height: 1.7;
  color: #94A3B8;
  flex-grow: 1;
}

.channel-card_meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #94A3B8;
  font-family: var(--home-font-mono);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-family: var(--home-font-mono);
  font-weight: 600;
  border: 1px solid #334155;
  border-radius: 3px;
  color: #CBD5E1;
  background: rgba(51, 65, 85, 0.3);
}

.tag--cyan {
  border-color: #06B6D4;
  color: #22D3EE;
  background: rgba(6, 182, 212, 0.12);
}

.tag--orange {
  border-color: #F97316;
  color: #FB923C;
  background: rgba(249, 115, 22, 0.12);
}

/* ===== 今日战报 ===== */
.report-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.report-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  background: #1E293B;
  border: 1px solid #334155;
  padding: 1.2rem;
  border-radius: 0 4px 4px 0;
  transition: background 0.2s ease;
}

.report-item:hover {
  background: #263449;
}

.media-frame--thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.media-frame--thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-item_body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.report-item_tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.report-item h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #E2E8F0;
  line-height: 1.3;
}

.report-item_summary {
  margin: 0;
  line-height: 1.7;
  color: #A5B2C9;
  font-size: 0.95rem;
}

.report-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0.5rem 0 0;
  padding: 0;
}

.report-data div {
  background: #0B0F19;
  border: 1px solid #334155;
  border-left: 3px solid #06B6D4;
  padding: 0.65rem 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.report-data dt {
  font-size: 0.75rem;
  color: #94A3B8;
}

.report-data dd {
  margin: 0;
  font-family: var(--home-font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: #22D3EE;
}

.report-data div:nth-child(2) dd {
  color: #FB923C;
}

/* ===== 焦点战分析 ===== */
.home-focus {
  position: relative;
  border: 1px solid #334155;
  border-radius: 4px;
  overflow: hidden;
  background: #0B0F19;
}

.focus-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.media-frame--focus {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.media-frame--focus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.focus-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 25, 0.95) 30%, rgba(11, 15, 25, 0.7) 70%, rgba(124, 58, 237, 0.3) 100%);
}

.focus-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.focus-content h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #E2E8F0;
}

.focus-intro {
  margin: 0 0 2rem;
  color: #C0C8D9;
  max-width: 44em;
  line-height: 1.7;
}

.focus-paragraphs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.focus-card {
  background: rgba(30, 41, 59, 0.86);
  border: 1px solid #334155;
  border-left: 4px solid #7C3AED;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  backdrop-filter: blur(4px);
  clip-path: var(--home-clip-angle);
}

.focus-card:nth-child(2) {
  border-left-color: #06B6D4;
}

.focus-card:nth-child(3) {
  border-left-color: #F97316;
}

.focus-card_num {
  font-family: var(--home-font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: #F97316;
}

.focus-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F1F5F9;
}

.focus-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #A5B2C9;
}

.focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ===== 阵容变动记录 ===== */
.lineup-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.lineup-visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-frame--lineup {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 4px;
  overflow: hidden;
}

.lineup-caption {
  font-size: 0.8rem;
  color: #94A3B8;
  font-family: var(--home-font-mono);
}

.lineup-table-wrap {
  overflow-x: auto;
  border: 1px solid #334155;
  border-radius: 4px;
}

.lineup-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}

.lineup-table th {
  background: #1E293B;
  color: #E2E8F0;
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: var(--home-font-display);
  font-weight: 700;
  border-bottom: 2px solid #7C3AED;
  white-space: nowrap;
}

.lineup-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #334155;
  color: #A5B2C9;
  background: rgba(11, 15, 25, 0.35);
  line-height: 1.5;
}

.lineup-table tr:hover td {
  background: #263449;
  color: #E2E8F0;
}

.lineup-table tr:last-child td {
  border-bottom: none;
}

.lineup-table td:first-child {
  font-family: var(--home-font-mono);
  font-size: 0.82rem;
  white-space: nowrap;
  color: #94A3B8;
}

.lineup-table .tag {
  white-space: nowrap;
}

/* ===== 浏览历史 ===== */
.history-banner {
  background: linear-gradient(120deg, #1E293B 0%, #0B0F19 60%, rgba(124, 58, 237, 0.2) 100%);
  border: 1px solid #334155;
  border-left: 6px solid #06B6D4;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  border-radius: 0 4px 4px 0;
}

.history-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: #E2E8F0;
}

.history-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #A5B2C9;
  max-width: 46em;
  margin: 0 0 1.5rem;
}

.history-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.history-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #C0C8D9;
  font-size: 0.95rem;
}

.history-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: #7C3AED;
  transform: rotate(45deg);
}

.history-carousel {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.history-card {
  border: 1px solid #334155;
  background: rgba(11, 15, 25, 0.7);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transform: skewX(-4deg);
}

.history-card--one {
  border-left: 4px solid #F97316;
}

.history-card--two {
  border-left: 4px solid #7C3AED;
  transform: skewX(3deg);
}

.history-card--three {
  border-left: 4px solid #06B6D4;
  transform: skewX(-2deg);
}

.history-card_label {
  font-family: var(--home-font-mono);
  font-size: 0.75rem;
  color: #94A3B8;
  letter-spacing: 0.08em;
}

.history-card_value {
  font-family: var(--home-font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #E2E8F0;
}

/* ===== 结尾概览 ===== */
.home-outro {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-outro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #94A3B8;
  max-width: 60em;
}

.outro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.outro-links a {
  color: #06B6D4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.outro-links a:hover {
  border-bottom-color: #7C3AED;
}

/* ===== 响应式增强 ===== */
@media (min-width: 720px) {
  .home-hero_inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 4.5rem 2.5rem 6.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stat_num {
    font-size: 1.6rem;
  }

  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .report-item {
    grid-template-columns: 280px 1fr;
    align-items: center;
  }

  .focus-paragraphs {
    grid-template-columns: repeat(3, 1fr);
  }

  .lineup-layout {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .history-banner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }

  .history-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1080px) {
  .page-home {
    padding: 0 2.5rem;
  }

  .home-hero_inner {
    padding: 5.5rem 3rem 7.5rem;
  }

  .report-data {
    grid-template-columns: repeat(4, 1fr);
  }

  .history-list {
    grid-template-columns: 1fr;
  }
}
