/* ===== 当前页面专属CSS，限定于 .page-home ===== */
.page-home {
  --ph-color-accent: #E53935;
  --ph-color-primary: #1A1A1A;
  --ph-color-silver: #C0C0C0;
  --ph-color-blue: #00B4D8;
  --ph-bg-dark: #121212;
  --ph-text-primary: #FFFFFF;
  --ph-text-secondary: #B0B0B0;
  --ph-emphasis-bg: rgba(229,57,53,0.15);
  --ph-font-heading: 'Arial Black', Impact, sans-serif;
  --ph-font-body: 'Segoe UI', Roboto, sans-serif;
  --ph-font-label: 'Courier New', monospace;
  --ph-header-height: 64px;
  --ph-container-max: 1280px;
}
/* 基础重置与容器 */
.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}
.page-home .container {
  max-width: var(--ph-container-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.page-home .btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--ph-color-accent);
  color: var(--ph-text-primary);
  font-family: var(--ph-font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: default;
  transition: opacity 0.3s;
}
.page-home .btn:hover {
  opacity: 0.85;
}
.page-home .btn-outline {
  background: transparent;
  border: 2px solid var(--ph-color-accent);
  color: var(--ph-color-accent);
}
/* 首屏英雄区 */
.page-home .hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,18,18,0.85) 30%, rgba(18,18,18,0.4) 60%, rgba(229,57,53,0.2) 100%);
  z-index: 1;
}
.page-home .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: var(--ph-header-height);
}
.page-home .hero-text-block {
  max-width: 720px;
}
.page-home .hero-title {
  font-family: var(--ph-font-heading);
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  color: var(--ph-text-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0 0 12px;
  line-height: 1;
}
.page-home .hero-subtitle {
  font-family: var(--ph-font-label);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--ph-color-accent);
  letter-spacing: 3px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.page-home .hero-desc {
  font-family: var(--ph-font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--ph-text-secondary);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 600px;
}
.page-home .hero-cta {
  font-size: 1rem;
}
.page-home .hero-indicator {
  position: absolute;
  bottom: 40px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.page-home .indicator-line {
  width: 2px;
  height: 60px;
  background: var(--ph-color-silver);
  position: relative;
}
.page-home .indicator-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ph-color-accent);
  border-radius: 50%;
}
.page-home .indicator-label {
  font-family: var(--ph-font-label);
  font-size: 0.75rem;
  color: var(--ph-text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* 通用章节标题 */
.page-home .section-header {
  margin-bottom: 48px;
  text-align: left;
}
.page-home .section-title {
  font-family: var(--ph-font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--ph-text-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}
.page-home .section-title::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: var(--ph-color-accent);
  margin-top: 8px;
}
.page-home .title-accent {
  color: var(--ph-color-accent);
  font-family: var(--ph-font-label);
  font-size: 0.7em;
  letter-spacing: 1px;
  display: block;
  margin-top: 4px;
}
.page-home .section-desc {
  font-family: var(--ph-font-body);
  font-size: 1rem;
  color: var(--ph-text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}
/* 排名区块 */
.page-home .rank-section {
  position: relative;
  padding: 80px 0;
  background: var(--ph-bg-dark);
  overflow: hidden;
}
.page-home .rank-bg {
  position: absolute;
  right: -120px;
  top: 10%;
  width: 600px;
  height: 400px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
.page-home .rank-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .rank-table-wrapper {
  position: relative;
  z-index: 1;
  background: rgba(30,30,30,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 8px;
  padding: 24px;
}
.page-home .rank-table-scroll {
  overflow-x: auto;
}
.page-home .rank-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--ph-font-body);
  color: var(--ph-text-primary);
  min-width: 600px;
}
.page-home .rank-table thead th {
  background: var(--ph-color-primary);
  padding: 14px 12px;
  font-family: var(--ph-font-label);
  font-size: 0.8rem;
  color: var(--ph-color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--ph-color-accent);
  position: sticky;
  top: 0;
  z-index: 2;
}
.page-home .rank-table tbody td {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--ph-font-body);
  font-size: 0.9rem;
}
.page-home .rank-table tbody tr:hover {
  background: var(--ph-emphasis-bg);
}
.page-home .rank-cta {
  margin-top: 24px;
  text-align: right;
}
/* 战报区块 */
.page-home .report-section {
  padding: 80px 0;
  background: var(--ph-color-primary);
}
.page-home .report-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(18,18,18,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 12px;
  padding: 24px;
}
.page-home .report-img {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
}
.page-home .report-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.page-home .report-content {
  flex: 1;
}
.page-home .report-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.page-home .report-tag {
  font-family: var(--ph-font-label);
  font-size: 0.75rem;
  color: var(--ph-text-primary);
  background: var(--ph-color-accent);
  padding: 4px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-home .report-date {
  font-family: var(--ph-font-label);
  font-size: 0.75rem;
  color: var(--ph-text-secondary);
  letter-spacing: 1px;
}
.page-home .report-headline {
  font-family: var(--ph-font-heading);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--ph-text-primary);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.page-home .report-lineup {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.page-home .report-lineup li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(192,192,192,0.12);
  font-family: var(--ph-font-body);
  font-size: 0.9rem;
  color: var(--ph-text-secondary);
  display: flex;
  gap: 8px;
}
.page-home .lineup-label {
  font-family: var(--ph-font-label);
  font-size: 0.75rem;
  color: var(--ph-color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 80px;
}
.page-home .report-cta {
  font-size: 0.9rem;
}
/* 赛程筛选区块 */
.page-home .schedule-section {
  position: relative;
  padding: 80px 0;
  background: var(--ph-bg-dark);
  overflow: hidden;
}
.page-home .schedule-bg {
  position: absolute;
  left: -150px;
  bottom: 0;
  width: 800px;
  height: 500px;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}
.page-home .schedule-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .schedule-toolbar {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.page-home .filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.page-home .filter-label {
  font-family: var(--ph-font-label);
  font-size: 0.8rem;
  color: var(--ph-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 8px;
}
.page-home .filter-btn {
  padding: 8px 20px;
  font-size: 0.8rem;
  background: transparent;
  border: 1px solid var(--ph-color-silver);
  color: var(--ph-text-secondary);
  transition: all 0.3s;
}
.page-home .filter-btn.active {
  background: var(--ph-color-accent);
  border-color: var(--ph-color-accent);
  color: var(--ph-text-primary);
}
.page-home .schedule-week {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.page-home .week-title {
  font-family: var(--ph-font-heading);
  font-size: 1.3rem;
  color: var(--ph-color-accent);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--ph-color-accent);
  padding-bottom: 8px;
  display: inline-block;
}
.page-home .schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.page-home .schedule-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  background: rgba(30,30,30,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 16px 20px;
  transition: background 0.3s;
}
.page-home .schedule-item:hover {
  background: var(--ph-emphasis-bg);
}
.page-home .match-team {
  font-family: var(--ph-font-body);
  font-weight: 700;
  color: var(--ph-text-primary);
  font-size: 1rem;
  flex: 1 1 auto;
}
.page-home .match-vs {
  font-family: var(--ph-font-label);
  font-size: 0.75rem;
  color: var(--ph-color-accent);
  text-transform: uppercase;
}
.page-home .match-time {
  font-family: var(--ph-font-label);
  font-size: 0.8rem;
  color: var(--ph-text-secondary);
  letter-spacing: 1px;
  margin-left: auto;
}
.page-home .schedule-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 32px;
}

/* 移动端优先 + 桌面断点 */
@media (min-width: 768px) {
  .page-home .report-card {
    flex-direction: row;
    align-items: flex-start;
  }
  .page-home .report-img {
    width: 300px;
  }
  .page-home .schedule-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .hero-indicator {
    left: 40px;
  }
}
@media (min-width: 1024px) {
  .page-home .schedule-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .page-home .hero-subtitle {
    font-size: 1.5rem;
  }
}
/* 窄屏保护 */
@media (max-width: 479px) {
  .page-home .hero-title {
    font-size: 2rem;
  }
  .page-home .hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-home .rank-table-wrapper {
    padding: 12px;
  }
  .page-home .report-card {
    padding: 16px;
  }
  .page-home .schedule-item {
    padding: 12px 14px;
  }
}
/* 阅读进度条（仅占位，由JS驱动data-progress） */
.page-home [data-progress] {
  transition: width 0.2s ease;
}
/* 固定表头 */
.page-home [data-fixed-header] thead th {
  position: sticky;
  top: var(--ph-header-height);
  z-index: 5;
}
/* 非对称斜线装饰（视觉气质） */
.page-home .section-header::before {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ph-color-accent), transparent);
  margin-bottom: 12px;
}
.page-home .hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--ph-color-accent));
  z-index: 3;
}
