.page-home {
  --home-panel: rgba(18, 8, 30, 0.64);
  --home-panel-2: rgba(59, 31, 75, 0.5);
  --home-line: rgba(248, 249, 250, 0.14);
  --home-line-soft: rgba(248, 249, 250, 0.08);
  --home-text-dim: rgba(248, 249, 250, 0.66);
  --home-accent: #FF4D00;
  --home-accent-alt: #FFB300;
  background: var(--color-primary);
  color: var(--color-text);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .hero-tech {
  position: relative;
  min-height: min(780px, 96vh);
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: calc(var(--header-height) + 32px) 0 64px;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.2) contrast(1.05);
}

.page-home .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(26, 11, 46, 0.97) 0%, rgba(26, 11, 46, 0.85) 42%, rgba(59, 31, 75, 0.52) 100%),
    radial-gradient(ellipse at 78% 40%, rgba(255, 77, 0, 0.18) 0%, transparent 60%);
}

.page-home .hero-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 46%, #000);
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--gutter) * 2);
  align-items: center;
}

.page-home .hero-copy {
  position: relative;
  z-index: 1;
}

.page-home .breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-text-sub);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.page-home .hero-coord {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-accent-alt);
  letter-spacing: 0.1em;
  border-left: 3px solid var(--home-accent);
  padding-left: 10px;
  background: rgba(255, 77, 0, 0.08);
}

.page-home .hero-copy h1 {
  margin: 0 0 6px;
  font-family: var(--font-title);
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.page-home .hero-slogan {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--home-accent);
  letter-spacing: 0.04em;
}

.page-home .hero-desc {
  max-width: 58ch;
  margin: 0 0 24px;
  color: rgba(248, 249, 250, 0.88);
  line-height: 1.8;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.page-home .hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  max-width: 540px;
}

.page-home .hero-stats li {
  background: rgba(59, 31, 75, 0.58);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: left;
}

.page-home .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.page-home .stat-label {
  display: block;
  font-size: 12px;
  color: rgba(248, 249, 250, 0.64);
}

.page-home .hero-visual {
  position: relative;
}

.page-home .hero-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.36));
}

.page-home .hero-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-text-dim);
}

.page-home .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.page-home .legend-dot.orange {
  background: var(--home-accent);
}

.page-home .legend-dot.yellow {
  background: var(--home-accent-alt);
}

.page-home .legend-dot.blank {
  background: rgba(248, 249, 250, 0.45);
}

.page-home .hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248, 249, 250, 0.55);
  letter-spacing: 0.14em;
  padding-bottom: 26px;
}

.page-home .hero-scroll-hint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, var(--home-accent), transparent);
}

.page-home .data-overview {
  background: var(--color-primary);
  border-top: 1px solid var(--home-line-soft);
  border-bottom: 1px solid var(--home-line-soft);
}

.page-home .section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
  margin-bottom: 18px;
}

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-accent);
  letter-spacing: 0.08em;
}

.page-home .section-header h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
}

.page-home .section-tag-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(248, 249, 250, 0.6);
  border-left: 2px solid var(--home-accent-alt);
  padding-left: 10px;
}

.page-home .overview-lead,
.page-home .feedback-lead {
  max-width: 72ch;
  color: rgba(248, 249, 250, 0.82);
  line-height: 1.85;
}

.page-home .league-board {
  position: relative;
  padding-top: 40px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, rgba(26, 11, 46, 0.96) 0%, rgba(26, 11, 46, 0.9) 40%, rgba(59, 31, 75, 0.78) 100%),
    repeating-linear-gradient(45deg, rgba(248, 249, 250, 0.02) 0, rgba(248, 249, 250, 0.02) 2px, transparent 2px, transparent 12px);
  border-bottom: 1px solid var(--home-line-soft);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), 0 100%);
}

.page-home .board-hero-img-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  overflow: hidden;
}

.page-home .board-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.page-home .board-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 11, 46, 0.9) 0%, rgba(26, 11, 46, 0.28) 70%, rgba(26, 11, 46, 0.55) 100%);
}

.page-home .board-inner {
  position: relative;
  z-index: 1;
}

.page-home .rank-strip {
  position: relative;
  margin: 20px 0 26px;
}

.page-home .rank-tape {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 77, 0, 0.5) rgba(248, 249, 250, 0.08);
}

.page-home .rank-tape::-webkit-scrollbar {
  height: 8px;
}

.page-home .rank-tape::-webkit-scrollbar-track {
  background: rgba(248, 249, 250, 0.08);
  border-radius: 10px;
}

.page-home .rank-tape::-webkit-scrollbar-thumb {
  background: rgba(255, 77, 0, 0.55);
  border-radius: 10px;
}

.page-home .rank-card {
  flex: 0 0 auto;
  width: 176px;
  scroll-snap-align: start;
  background: rgba(26, 11, 46, 0.72);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-home .rank-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.45);
}

.page-home .rank-card::before {
  content: attr(data-coord);
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(248, 249, 250, 0.3);
  letter-spacing: 0.08em;
}

.page-home .rank-no {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--home-accent);
  line-height: 1;
}

.page-home .rank-card[data-coord="01"] {
  border-color: rgba(255, 179, 0, 0.55);
  background: linear-gradient(135deg, rgba(59, 31, 75, 0.9), rgba(26, 11, 46, 0.82));
}

.page-home .rank-card[data-coord="01"]::before {
  color: var(--home-accent-alt);
}

.page-home .rank-team {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.page-home .rank-meta {
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(248, 249, 250, 0.6);
}

.page-home .rank-points {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.page-home .rank-points::after {
  content: " 积分";
  font-size: 12px;
  color: rgba(248, 249, 250, 0.5);
  font-family: var(--font-body);
}

.page-home .board-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .recent-results {
  background: var(--color-primary);
  padding-bottom: 64px;
}

.page-home .results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}

.page-home .result-highlight {
  background: linear-gradient(145deg, rgba(59, 31, 75, 0.5), rgba(26, 11, 46, 0.62));
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-home .result-highlight-img {
  overflow: hidden;
}

.page-home .result-highlight-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.page-home .result-highlight:hover .result-highlight-img img {
  transform: scale(1.04);
}

.page-home .result-highlight-body {
  padding: 22px 24px 26px;
}

.page-home .result-highlight-body h3,
.page-home .result-list h3,
.page-home .lineup-copy h3,
.page-home .lineup-feed h3,
.page-home .channel-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-family: var(--font-title);
}

.page-home .result-highlight-body p {
  color: rgba(248, 249, 250, 0.78);
  line-height: 1.75;
  margin: 0 0 18px;
}

.page-home .result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .result-list {
  background: rgba(26, 11, 46, 0.72);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 20px 20px 10px;
}

.page-home .result-list h3 {
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--home-line-soft);
}

.page-home .result-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--home-line-soft);
  font-size: 14px;
}

.page-home .round-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248, 249, 250, 0.52);
  min-width: 96px;
}

.page-home .teams {
  flex: 1 1 180px;
  color: var(--color-text);
  font-weight: 600;
}

.page-home .result-status {
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--home-line);
}

.page-home .result-status.win {
  color: #b9f6ca;
  border-color: rgba(46, 125, 50, 0.6);
}

.page-home .result-status.draw {
  color: var(--home-accent-alt);
  border-color: rgba(255, 179, 0, 0.5);
}

.page-home .result-status.lose {
  color: #ef9a9a;
  border-color: rgba(211, 47, 47, 0.5);
}

.page-home .result-list-note {
  font-size: 12px;
  color: rgba(248, 249, 250, 0.42);
  line-height: 1.6;
  margin: 12px 0 8px;
}

.page-home .lineup-live {
  background: var(--color-secondary);
  border-top: 1px solid var(--home-line-soft);
  border-bottom: 1px solid var(--home-line-soft);
  padding-bottom: 64px;
}

.page-home .lineup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.page-home .lineup-art,
.page-home .lineup-copy,
.page-home .lineup-feed {
  background: rgba(26, 11, 46, 0.55);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
}

.page-home .lineup-art {
  padding: 10px;
}

.page-home .lineup-art img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.page-home .lineup-art-caption {
  display: block;
  text-align: center;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(248, 249, 250, 0.55);
}

.page-home .lineup-copy {
  padding: 24px 24px 26px;
}

.page-home .lineup-copy p {
  color: rgba(248, 249, 250, 0.8);
  line-height: 1.75;
  margin: 0 0 14px;
}

.page-home .lineup-feed {
  padding: 20px 20px 12px;
}

.page-home .feed-list {
  list-style: none;
  counter-reset: feed;
  margin: 0;
  padding: 0;
}

.page-home .feed-list li {
  position: relative;
  padding: 0 0 18px 34px;
  border-left: 1px dashed var(--home-line);
  margin-left: 8px;
  font-size: 14px;
  color: rgba(248, 249, 250, 0.78);
  line-height: 1.65;
}

.page-home .feed-list li::before {
  content: counter(feed);
  counter-increment: feed;
  position: absolute;
  left: -12px;
  top: -2px;
  width: 22px;
  height: 22px;
  background: var(--home-accent);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-mono);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .feed-list li:last-child {
  border-left-color: transparent;
}

.page-home .feed-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-accent-alt);
  margin-bottom: 2px;
}

.page-home .feed-list p {
  margin: 0;
}

.page-home .schedule-feedback {
  background: var(--color-primary);
  padding-bottom: 72px;
}

.page-home .feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.page-home .channel-card {
  background: rgba(26, 11, 46, 0.66);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .channel-card p {
  color: rgba(248, 249, 250, 0.78);
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}

.page-home .channel-card .btn {
  align-self: flex-start;
}

@media (min-width: 560px) {
  .page-home .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .results-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .page-home .result-highlight {
    flex-direction: column;
  }

  .page-home .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .page-home .lineup-grid {
    grid-template-columns: 0.82fr 1fr 1fr;
  }

  .page-home .lineup-art img {
    height: 100%;
    min-height: 220px;
  }

  .page-home .result-list {
    padding: 24px 24px 14px;
  }

  .page-home .board-foot {
    justify-content: flex-end;
  }
}

@media (min-width: 900px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .page-home .hero-tech {
    padding-top: calc(var(--header-height) + 48px);
  }
}

@media (min-width: 1024px) {
  .page-home .feedback-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .result-highlight-img img {
    height: 300px;
  }

  .page-home .rank-card {
    width: 192px;
  }

  .page-home .data-overview,
  .page-home .recent-results,
  .page-home .lineup-live {
    padding-top: 18px;
  }

  .page-home .league-board {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}
