.page-home {
  --page-primary: #FF4500;
  --page-secondary: #0A192F;
  --page-accent: #C0C0C0;
  --page-white: #FFFFFF;
  --page-light-gray: #B0BEC5;
  --page-blue-light: #1A2A4A;
  --page-success: #00E676;
  --page-gradient-fire: linear-gradient(135deg, #FF4500, #FF6A00);
  --page-font-heading: 'Montserrat', 'Impact', Arial Black, sans-serif;
  --page-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --page-font-data: 'Fira Code', 'Consolas', monospace;
  --page-max-width: 1200px;
  --page-header-height: 64px;
  --page-nav-gap: 2rem;
  display: block;
}

/* ========== 全局基础（作用域内） ========== */
.page-home .breadcrumb {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--page-light-gray);
  z-index: 2;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.page-home .breadcrumb-item {
  pointer-events: none;
}
.page-home .breadcrumb-current {
  color: var(--page-white);
}
.page-home .section-title {
  font-family: var(--page-font-heading);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--page-white);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.page-home .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--page-primary);
  margin-top: 0.5rem;
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  font-family: var(--page-font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.page-home .btn-primary {
  background: var(--page-gradient-fire);
  color: var(--page-white);
}
.page-home .btn-primary:hover {
  background: linear-gradient(135deg, #CC3700, #FF4500);
}
.page-home .btn-outline {
  background: transparent;
  border: 2px solid var(--page-primary);
  color: var(--page-primary);
}
.page-home .btn-outline:hover {
  background: var(--page-primary);
  color: var(--page-white);
}
.page-home .content-container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.page-home a {
  color: inherit;
}

/* ========== 首屏 ========== */
.page-home .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}
.page-home .hero-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 1.25rem;
  gap: 2rem;
}
.page-home .hero-content {
  flex: 1 1 400px;
  max-width: 600px;
}
.page-home .hero-title {
  font-family: var(--page-font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--page-white);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.page-home .hero-subtitle {
  font-family: var(--page-font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--page-light-gray);
  margin-bottom: 2rem;
  max-width: 500px;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.page-home .hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 25, 47, 0.7);
  padding: 0.5rem 1rem;
  border: 1px solid var(--page-accent);
}
.page-home .badge-img {
  width: 60px;
  height: auto;
}
.page-home .badge-text {
  font-family: var(--page-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--page-primary);
}
.page-home .hero-data-panel {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 400px;
}
.page-home .data-card {
  background: rgba(10, 25, 47, 0.85);
  border: 1px solid var(--page-accent);
  padding: 1rem;
  text-align: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.page-home .data-card:hover {
  background: var(--page-blue-light);
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}
.page-home .data-label {
  display: block;
  font-family: var(--page-font-data);
  font-size: 0.75rem;
  color: var(--page-light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.page-home .data-value {
  display: block;
  font-family: var(--page-font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--page-primary);
}

/* ========== 射门统计专栏 ========== */
.page-home .shooting-stats {
  padding: 4rem 0;
  background: var(--page-secondary);
}
.page-home .stats-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-home .stats-visual {
  order: 2;
}
.page-home .stats-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
.page-home .stats-info {
  order: 1;
}
.page-home .stats-desc {
  color: var(--page-white);
  margin-bottom: 1.5rem;
}
.page-home .stats-panel {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.page-home .stat-item {
  flex: 1;
  min-width: 100px;
  background: var(--page-blue-light);
  border-bottom: 3px solid var(--page-primary);
  padding: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-home .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}
.page-home .stat-label {
  display: block;
  font-family: var(--page-font-data);
  font-size: 0.75rem;
  color: var(--page-light-gray);
  text-transform: uppercase;
}
.page-home .stat-value {
  display: block;
  font-family: var(--page-font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--page-white);
}

/* ========== 2026适配 ========== */
.page-home .adaptation {
  padding: 4rem 0;
  background: var(--page-blue-light);
  position: relative;
}
.page-home .adaptation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--page-gradient-fire);
}
.page-home .adapt-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.page-home .adapt-text {
  color: var(--page-white);
  max-width: 600px;
}
.page-home .adapt-text p {
  margin-bottom: 1.5rem;
}
.page-home .adapt-visual {
  order: -1;
}
.page-home .adapt-img {
  width: 200px;
  height: auto;
  clip-path: polygon(20% 0%, 100% 10%, 80% 100%, 0% 90%);
}

/* ========== 赛前十分钟 ========== */
.page-home .prematch {
  padding: 4rem 0;
  background: var(--page-secondary);
}
.page-home .prematch-desc {
  color: var(--page-white);
  max-width: 700px;
  margin-bottom: 2rem;
}
.page-home .prematch-features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.page-home .feature-card {
  background: var(--page-blue-light);
  padding: 1.5rem;
  border-left: 4px solid var(--page-primary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.3s;
}
.page-home .feature-card:hover {
  background: var(--page-secondary);
}
.page-home .feature-icon {
  font-size: 1.5rem;
  color: var(--page-primary);
}
.page-home .feature-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--page-white);
}
.page-home .feature-text {
  font-size: 0.875rem;
  color: var(--page-light-gray);
}

/* ========== 会员权益 ========== */
.page-home .membership {
  padding: 4rem 0;
  background: var(--page-secondary);
  position: relative;
}
.page-home .membership::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--page-gradient-fire);
}
.page-home .member-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.page-home .member-item {
  background: var(--page-blue-light);
  padding: 1.5rem;
  border: 1px solid var(--page-accent);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-home .member-icon {
  font-size: 1.5rem;
  color: var(--page-success);
}
.page-home .member-ttl {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--page-white);
  margin: 0;
}
.page-home .member-item p {
  color: var(--page-light-gray);
  margin: 0;
}
.page-home .member-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========== 下载弹窗 ========== */
.page-home .download-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.page-home .download-modal[hidden] {
  display: none;
}
.page-home .download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.page-home .modal-content {
  background: var(--page-blue-light);
  padding: 2rem;
  border: 1px solid var(--page-accent);
  text-align: center;
  max-width: 90vw;
}
.page-home .modal-content p {
  color: var(--page-white);
  margin-bottom: 1rem;
}
.page-home .modal-content img {
  max-width: 200px;
  height: auto;
}
.page-home .modal-close {
  margin-top: 1rem;
}

/* ========== 响应式 ========== */
@media (min-width: 768px) {
  .page-home .hero-title {
    font-size: 3.5rem;
  }
  .page-home .hero-overlay {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 4rem 2rem;
  }
  .page-home .hero-data-panel {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .stats-grid {
    flex-direction: row;
    align-items: center;
  }
  .page-home .stats-visual {
    order: 1;
    flex: 0 0 40%;
  }
  .page-home .stats-info {
    order: 2;
    flex: 0 0 55%;
  }
  .page-home .adapt-grid {
    flex-direction: row;
  }
  .page-home .adapt-visual {
    order: 2;
  }
  .page-home .adapt-text {
    flex: 1;
  }
  .page-home .member-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .page-home .hero-title {
    font-size: 4rem;
  }
  .page-home .member-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .page-home .download-modal .modal-content img {
    max-width: 300px;
  }
}
/* 确保窄屏不横向溢出 */
@media (max-width: 767px) {
  .page-home .stats-img {
    clip-path: none;
  }
  .page-home .adapt-img {
    width: 150px;
  }
  .page-home .hero-badge {
    flex-wrap: wrap;
  }
}
</<|PAGE_CSS|>>>
