.page-home {
  --home-primary: #39FF14;
  --home-secondary: #00E5FF;
  --home-accent: #FF6B00;
  --home-bg-primary: #0A0E1A;
  --home-bg-secondary: #1A1F2E;
  --home-bg-tertiary: #0B0F1A;
  --home-border: #2A3440;
  --home-text: #FFFFFF;
  --home-muted: #A0A9B4;
  --home-danger: #FF6B00;
  background: var(--home-bg-primary);
  color: var(--home-text);
  overflow-x: clip;
}

.page-home .container {
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

.page-home a {
  color: var(--home-secondary);
  text-underline-offset: 4px;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 56px 72px;
  position: relative;
}

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

.page-home .hero-kicker {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-primary);
  margin: 0 0 16px;
  font-weight: 700;
}

.page-home .hero-copy h1 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(48px, 9vw, 104px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: var(--home-text);
  position: relative;
}

.page-home .hero-copy h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 8px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--home-primary), var(--home-secondary));
  border-radius: 4px;
}

.page-home .hero-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--home-muted);
  max-width: 34em;
  margin: 0 0 28px;
}

.page-home .hero-facts {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .hero-facts li {
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid var(--home-border);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 132px;
}

.page-home .fact-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--home-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.page-home .fact-value {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  color: var(--home-primary);
  font-weight: 700;
}

.page-home .hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-home .btn-primary {
  background: var(--home-primary);
  color: var(--home-bg-primary);
}

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

.page-home .btn-outline {
  border-color: var(--home-secondary);
  color: var(--home-secondary);
  background: transparent;
}

.page-home .btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  transform: translateY(-2px);
}

.page-home .btn:focus-visible {
  outline: 3px solid var(--home-primary);
  outline-offset: 2px;
}

.page-home .hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--home-border);
  background: var(--home-bg-tertiary);
}

.page-home .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.page-home .pitch-svg-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .pitch-svg {
  width: min(100%, 680px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.2));
}

.page-home .hero-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(115deg, transparent 20%, rgba(0, 229, 255, 0.08) 38%, rgba(57, 255, 20, 0.12) 42%, transparent 60%);
  background-size: 250% 100%;
  animation: home-scan 8s ease-in-out infinite alternate;
  z-index: 3;
  pointer-events: none;
}

@keyframes home-scan {
  0% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.page-home .home-live {
  padding-block: 64px 72px;
  background: linear-gradient(180deg, var(--home-bg-tertiary) 0%, var(--home-bg-primary) 100%);
}

.page-home .section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
}

.page-home .section-kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-secondary);
  margin: 0 0 8px;
  font-weight: 700;
}

.page-home .section-heading h2 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-home .tag-live {
  background: var(--home-primary);
  color: var(--home-bg-primary);
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-bg-primary);
  animation: home-pulse 1.6s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.page-home .tag-accent {
  background: var(--home-accent);
  color: var(--home-bg-primary);
}

.page-home .live-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .live-table-wrap {
  background: rgba(26, 31, 46, 0.7);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.page-home .live-table-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--home-primary), var(--home-secondary), transparent);
  opacity: 0.7;
}

.page-home .live-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page-home .live-table caption {
  color: var(--home-muted);
}

.page-home .live-table th {
  text-align: left;
  padding: 14px 10px;
  color: var(--home-muted);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--home-border);
  font-family: 'Courier New', monospace;
}

.page-home .live-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(42, 52, 64, 0.5);
  font-family: 'Courier New', monospace;
  color: var(--home-text);
}

.page-home .live-table tbody tr {
  transition: background 0.2s ease;
}

.page-home .live-table tbody tr:hover {
  background: rgba(57, 255, 20, 0.06);
}

.page-home .live-table .rank {
  color: var(--home-accent);
  font-weight: 700;
}

.page-home .live-table .team {
  font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  font-weight: 700;
}

.page-home .live-table .points {
  color: var(--home-primary);
  font-weight: 700;
  font-size: 18px;
}

.page-home .live-table-note {
  padding: 16px 16px 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .live-bg-img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-home .live-table-note p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .live-aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .live-card {
  background: var(--home-bg-secondary);
  border: 1px solid var(--home-border);
  border-left: 4px solid var(--home-primary);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(57, 255, 20, 0.08);
}

.page-home .card-index {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: var(--home-secondary);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.page-home .card-title {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--home-text);
  font-weight: 700;
}

.page-home .live-card p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
  font-size: 15px;
}

.page-home .home-had {
  padding-block: 72px 64px;
  background: radial-gradient(circle at 10% 30%, rgba(42, 90, 42, 0.4) 0%, transparent 40%),
              radial-gradient(circle at 90% 70%, rgba(26, 58, 90, 0.5) 0%, transparent 40%),
              var(--home-bg-primary);
}

.page-home .had-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .lead-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--home-text);
  margin: 0 0 16px;
  font-weight: 600;
}

.page-home .had-copy p {
  color: var(--home-muted);
  line-height: 1.8;
  margin: 0 0 20px;
}

.page-home .had-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.page-home .had-list li {
  position: relative;
  padding-left: 28px;
  color: var(--home-text);
  line-height: 1.6;
}

.page-home .had-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--home-primary), var(--home-secondary));
  border-radius: 3px;
  transform: rotate(45deg);
}

.page-home .had-viz {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-home .had-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-home .had-chart {
  position: relative;
  z-index: 1;
  padding: 24px 16px;
  background: rgba(10, 14, 26, 0.85);
  border-top: 1px solid var(--home-border);
}

.page-home .had-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .had-team {
  font-size: 14px;
  font-weight: 600;
  color: var(--home-text);
  white-space: nowrap;
}

.page-home .had-bar {
  display: flex;
  gap: 4px;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.page-home .bar-home {
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.5), var(--home-primary));
  width: 72%;
  border-radius: 0;
  position: relative;
}

.page-home .bar-home::after {
  content: attr(data-label);
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: var(--home-bg-primary);
  font-weight: 700;
}

.page-home .bar-away {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.5), var(--home-secondary));
  width: 61%;
  position: relative;
}

.page-home .bar-away::after {
  content: attr(data-label);
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: var(--home-bg-primary);
  font-weight: 700;
}

.page-home .had-row:nth-child(2) .bar-home { width: 68%; }
.page-home .had-row:nth-child(2) .bar-home::after { content: "68%"; }
.page-home .had-row:nth-child(2) .bar-away { width: 58%; }
.page-home .had-row:nth-child(2) .bar-away::after { content: "58%"; }

.page-home .had-row:nth-child(3) .bar-home { width: 64%; }
.page-home .had-row:nth-child(3) .bar-home::after { content: "64%"; }
.page-home .had-row:nth-child(3) .bar-away { width: 55%; }
.page-home .had-row:nth-child(3) .bar-away::after { content: "55%"; }

.page-home .had-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.page-home .legend-home,
.page-home .legend-away {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-muted);
}

.page-home .legend-home::before,
.page-home .legend-away::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 2px;
}

.page-home .legend-home::before {
  background: var(--home-primary);
}

.page-home .legend-away::before {
  background: var(--home-secondary);
}

.page-home .home-videos {
  padding-block: 72px 64px;
  background: linear-gradient(180deg, var(--home-bg-tertiary) 0%, var(--home-bg-primary) 100%);
}

.page-home .text-link {
  color: var(--home-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
}

.page-home .text-link:hover {
  color: var(--home-primary);
  text-decoration: underline;
}

.page-home .video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .video-card {
  background: var(--home-bg-secondary);
  border: 1px solid var(--home-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.page-home .media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--home-bg-tertiary);
  overflow: hidden;
}

.page-home .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-home .media-frame img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.page-home .video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(10, 14, 26, 0.8);
  border: 1px solid var(--home-border);
  color: var(--home-text);
  padding: 4px 10px;
  font-family: 'Courier New', monospace;
  font-size: 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.page-home .video-card h3 {
  font-size: 18px;
  margin: 16px 20px 8px;
  line-height: 1.4;
}

.page-home .video-meta {
  margin: 0 20px 20px;
  color: var(--home-muted);
  font-size: 14px;
}

.page-home .video-note {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--home-secondary);
  background: rgba(0, 229, 255, 0.06);
  border-radius: 0 12px 12px 0;
}

.page-home .video-note p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
}

.page-home .home-guarantee {
  padding-block: 72px 80px;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 90, 42, 0.25) 0%, transparent 50%), var(--home-bg-primary);
}

.page-home .guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.page-home .guarantee-item {
  background: linear-gradient(145deg, rgba(26, 31, 46, 0.9), rgba(11, 15, 26, 0.9));
  border: 1px solid var(--home-border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .guarantee-item:hover {
  border-color: var(--home-primary);
  transform: translateY(-4px);
}

.page-home .guarantee-num {
  font-family: 'Courier New', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--home-primary);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.page-home .guarantee-num .unit {
  font-size: 16px;
  color: var(--home-muted);
  margin-left: 4px;
  font-weight: 400;
}

.page-home .guarantee-item:nth-child(2) .guarantee-num {
  color: var(--home-secondary);
}

.page-home .guarantee-item:nth-child(3) .guarantee-num {
  color: var(--home-accent);
}

.page-home .guarantee-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.page-home .guarantee-item p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.7;
  font-size: 15px;
}

.page-home .guarantee-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-home .extra-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(26, 31, 46, 0.7);
  border: 1px solid var(--home-border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--home-muted);
}

.page-home .badge-icon {
  color: var(--home-primary);
  font-weight: 700;
}

.page-home .support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.page-home .support-links a {
  color: var(--home-text);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--home-secondary);
  padding-bottom: 4px;
}

.page-home .support-links a:hover {
  color: var(--home-secondary);
}

@media (min-width: 720px) {
  .page-home .hero-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    padding-block: 72px 88px;
  }

  .page-home .hero-visual {
    min-height: 480px;
  }

  .page-home .live-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }

  .page-home .live-aside {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-home .had-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

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

@media (min-width: 1024px) {
  .page-home .container {
    width: min(1200px, 100% - 64px);
  }

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

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

  .page-home .live-table {
    font-size: 16px;
  }
}
