.page-home {
  --home-glow-accent: rgba(57, 255, 20, 0.12);
  --home-glow-gold: rgba(201, 162, 39, 0.14);
  --home-stage-bg: linear-gradient(180deg, rgba(5, 14, 28, 0.72), rgba(26, 46, 74, 0.45));
  background:
    radial-gradient(1000px 680px at 88% 2%, var(--home-glow-accent), transparent 62%),
    radial-gradient(760px 520px at -6% 42%, var(--home-glow-gold), transparent 60%);
  font-family: var(--font-body);
  color: var(--c-text);
  overflow-x: hidden;
}

.page-home .home-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--c-sub);
  padding: 18px 0 8px;
}

.page-home .home-crumb-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-online);
}

.page-home .home-crumb-sep {
  color: var(--line-rule-strong);
}

.page-home .home-crumb-current {
  color: var(--c-text);
  font-weight: 700;
}

.page-home .home-top {
  display: grid;
  gap: 28px;
  padding: 30px 0 22px;
}

.page-home .home-intro {
  position: relative;
}

.page-home .home-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 8px 0 6px;
}

.page-home .home-subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}

.page-home .home-desc {
  color: var(--c-sub);
  font-size: 15px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 22px;
}

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

.page-home .home-toc {
  border: 1px solid var(--line-rule);
  border-radius: var(--radius);
  background: rgba(26, 46, 74, 0.5);
  padding: 20px 22px;
  position: relative;
}

.page-home .home-toc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-accent), var(--c-gold));
  opacity: 0.6;
  border-radius: 0 2px 2px 0;
}

.page-home .home-toc-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--c-text);
  letter-spacing: 0.04em;
}

.page-home .home-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-size: 15px;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-rule);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}

.page-home .home-toc-list a:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
  padding-left: 6px;
}

.page-home .home-toc-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-accent);
  background: rgba(57, 255, 20, 0.08);
  border-radius: 4px;
  padding: 2px 7px;
}

.page-home .home-visual--top {
  margin: 6px 0 0;
}

.page-home .home-visual--top img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-rule);
  box-shadow: var(--shadow-card);
}

.page-home .home-visual--top figcaption {
  padding: 10px 2px 0;
  font-size: 13px;
  color: var(--c-sub);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.page-home .home-section {
  padding: 54px 0 6px;
}

.page-home .home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-rule);
  padding-bottom: 12px;
}

.page-home .home-section-head .section-label {
  color: var(--c-gold);
}

.page-home .home-section-head .section-title {
  margin-bottom: 0;
}

.page-home .home-section-link {
  color: var(--c-sub);
  font-size: 13px;
  font-family: var(--font-mono);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}

.page-home .home-section-link:hover {
  color: var(--c-accent);
}

.page-home .home-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .home-stat-card {
  background: linear-gradient(145deg, rgba(26, 46, 74, 0.72), rgba(5, 14, 28, 0.6));
  border: 1px solid var(--line-rule);
  border-radius: var(--radius);
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}

.page-home .home-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-rule-strong);
  box-shadow: var(--shadow-card);
}

.page-home .home-stat-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}

.page-home .home-stat-card:hover::after {
  transform: scaleX(1);
}

.page-home .home-stat-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-sub);
  margin-bottom: 10px;
}

.page-home .home-stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--c-text);
}

.page-home .home-stat-unit {
  font-size: 16px;
  color: var(--c-gold);
  margin-left: 2px;
}

.page-home .home-stat-label {
  font-size: 14px;
  color: var(--c-text);
  margin: 0 0 4px;
  font-weight: 700;
}

.page-home .home-stat-note {
  font-size: 12px;
  color: var(--c-sub);
  line-height: 1.5;
  margin: 0;
}

.page-home .home-stat-card--gold {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(5, 14, 28, 0.7));
  border-color: rgba(201, 162, 39, 0.3);
}

.page-home .home-stat-card--gold .home-stat-value {
  color: var(--c-gold);
}

.page-home .home-stat-card--accent {
  background: linear-gradient(145deg, rgba(57, 255, 20, 0.14), rgba(5, 14, 28, 0.7));
  border-color: rgba(57, 255, 20, 0.28);
}

.page-home .home-stat-card--accent .home-stat-value {
  color: var(--c-accent);
}

.page-home .home-stat-card--dark {
  background: linear-gradient(145deg, rgba(5, 14, 28, 0.92), rgba(26, 46, 74, 0.5));
}

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

.page-home .home-match-card {
  background: rgba(26, 46, 74, 0.55);
  border: 1px solid var(--line-rule);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}

.page-home .home-match-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 255, 20, 0.4);
  background: rgba(26, 46, 74, 0.8);
}

.page-home .home-match-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.page-home .home-match-sport {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 2px 9px;
  border-radius: 20px;
}

.page-home .home-match-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-online);
}

.page-home .home-match-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.page-home .home-match-full {
  font-size: 13px;
  color: var(--c-sub);
  margin: -4px 0 0;
}

.page-home .home-match-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-home .home-match-tags li {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-text);
  background: rgba(160, 180, 200, 0.1);
  border-radius: 4px;
  padding: 3px 7px;
}

.page-home .home-match-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line-rule);
  padding-top: 12px;
  margin-top: 4px;
}

.page-home .home-match-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-sub);
}

.page-home .home-match-link {
  font-size: 13px;
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.page-home .home-match-link:hover {
  text-decoration: underline;
}

.page-home .home-features-grid {
  display: grid;
  gap: 20px;
}

.page-home .home-features-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-rule);
  box-shadow: var(--shadow-card);
}

.page-home .home-feature-list {
  display: grid;
  gap: 12px;
}

.page-home .home-feature-item {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(26, 46, 74, 0.4);
  border: 1px solid var(--line-rule);
  transition: background var(--t-mid) var(--ease), border-color var(--t-mid) var(--ease);
}

.page-home .home-feature-item:hover {
  background: rgba(26, 46, 74, 0.75);
  border-color: rgba(57, 255, 20, 0.25);
}

.page-home .home-feature-num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-gold);
  padding-top: 3px;
}

.page-home .home-feature-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
}

.page-home .home-feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-sub);
  margin: 0;
}

.page-home .home-stream-layout {
  display: grid;
  gap: 20px;
}

.page-home .home-stream-stage {
  position: relative;
  border: 1px solid var(--line-rule);
  border-radius: var(--radius);
  background: var(--home-stage-bg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .home-stream-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .home-stream-freq {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-home .home-stream-freq-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-text);
  background: rgba(5, 14, 28, 0.6);
  border-radius: 14px;
  padding: 12px 22px;
  border: 1px solid rgba(57, 255, 20, 0.35);
}

.page-home .home-stream-freq-unit {
  font-size: 20px;
  color: var(--c-accent);
  margin-left: 4px;
}

.page-home .home-stream-freq-label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-sub);
}

.page-home .home-stream-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .home-stream-side img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  max-width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line-rule);
}

.page-home .home-stream-status {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.page-home .home-stream-status li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-rule);
}

.page-home .home-stream-status li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-home .home-stream-figure {
  margin: 16px 0 0;
}

.page-home .home-stream-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-rule);
}

.page-home .home-stream-figure figcaption {
  padding: 10px 2px 0;
  font-size: 13px;
  color: var(--c-sub);
  font-family: var(--font-mono);
}

.page-home .home-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .home-news-item {
  border: 1px solid var(--line-rule);
  border-radius: var(--radius);
  background: rgba(26, 46, 74, 0.42);
  padding: 18px 20px;
  transition: border-color var(--t-mid) var(--ease), background var(--t-mid) var(--ease), transform var(--t-mid) var(--ease);
}

.page-home .home-news-item:hover {
  border-color: rgba(57, 255, 20, 0.3);
  background: rgba(26, 46, 74, 0.78);
  transform: translateY(-2px);
}

.page-home .home-news-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-accent);
  background: rgba(57, 255, 20, 0.1);
  border-radius: 4px;
  padding: 2px 9px;
  margin-bottom: 10px;
}

.page-home .home-news-link {
  text-decoration: none;
  color: var(--c-text);
}

.page-home .home-news-link h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  margin: 0 0 6px;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .home-news-link p {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.6;
  margin: 0;
}

.page-home .home-cta {
  margin: 48px 0 0;
  padding: 34px 0;
  border-top: 1px solid var(--line-rule);
  border-bottom: 1px solid var(--line-rule);
  background:
    radial-gradient(600px 240px at 50% 100%, rgba(57, 255, 20, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(26, 46, 74, 0.3), rgba(5, 14, 28, 0.5));
}

.page-home .home-cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-home .home-cta-content .section-label {
  color: var(--c-gold);
}

.page-home .home-cta h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
  margin: 8px 0 12px;
}

.page-home .home-cta p {
  color: var(--c-sub);
  line-height: 1.7;
  margin: 0 0 22px;
}

.page-home .home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@keyframes homeStreamDash {
  0% {
    stroke-dashoffset: 1200;
  }
  55% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.page-home .home-stream-path--a,
.page-home .home-stream-path--b,
.page-home .home-stream-path--c {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: homeStreamDash 4s ease-in-out infinite;
}

.page-home .home-stream-path--b {
  animation-delay: 0.8s;
}

.page-home .home-stream-path--c {
  animation-delay: 1.5s;
  animation-duration: 5s;
}

@media (min-width: 700px) {
  .page-home .home-top {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

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

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

  .page-home .home-features-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }

  .page-home .home-stream-side {
    grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1000px) {
  .page-home .home-stat-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-home .home-stat-card:nth-child(even) {
    transform: rotate(1.1deg);
  }

  .page-home .home-stat-card:nth-child(odd) {
    transform: rotate(-0.8deg);
  }

  .page-home .home-stat-card:nth-child(even):hover {
    transform: rotate(1.1deg) translateY(-4px);
  }

  .page-home .home-stat-card:nth-child(odd):hover {
    transform: rotate(-0.8deg) translateY(-4px);
  }

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

  .page-home .home-stream-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }

  .page-home .home-stream-side {
    grid-template-columns: 1fr;
  }

  .page-home .home-title {
    font-size: 54px;
  }

  .page-home .home-cta h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-stream-path--a,
  .page-home .home-stream-path--b,
  .page-home .home-stream-path--c {
    animation: none;
    stroke-dashoffset: 0;
  }

  .page-home .home-stat-card,
  .page-home .home-match-card,
  .page-home .home-news-item,
  .page-home .home-feature-item {
    transition: none;
  }

  .page-home .home-stat-card:hover {
    transform: none;
  }

  .page-home .home-stat-card:nth-child(even),
  .page-home .home-stat-card:nth-child(odd) {
    transform: none;
  }

  .page-home .home-stat-card:nth-child(even):hover,
  .page-home .home-stat-card:nth-child(odd):hover {
    transform: none;
  }
}
