.page-home {
  --card-radius: var(--radius);
  --section-gap: 44px;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--dark-brown);
  font-family: var(--font-body);
  line-height: 1.8;
}

.page-home .page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 0;
  font-size: 12px;
  color: var(--gray-blue);
}

.page-home .crumb-link {
  color: var(--blue-mist);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .crumb-link:hover {
  color: var(--passion-red);
}

.page-home .crumb-sep {
  color: var(--gray-blue);
}

.page-home .hero-arena {
  display: grid;
  margin: 16px 12px 0;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .hero-copy {
  position: relative;
  background: var(--deep-space-blue);
  color: var(--cream);
  padding: 28px 20px 34px;
}

.page-home .hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.18), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(230, 57, 70, 0.22), transparent 48%);
  pointer-events: none;
}

.page-home .hero-copy::after {
  content: "LIVE";
  position: absolute;
  right: -16px;
  bottom: -34px;
  font-family: var(--font-mono);
  font-weight: 900;
  font-size: 110px;
  color: rgba(255, 255, 255, 0.04);
  transform: rotate(-8deg);
  pointer-events: none;
}

.page-home .hero-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-home .hero-route {
  font-size: 12px;
  color: rgba(255, 249, 239, 0.6);
}

.page-home .live-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--passion-red);
}

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

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

.page-home .hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-home .hero-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 249, 239, 0.82);
}

.page-home .scoreboard {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.page-home .score-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.page-home .score-league {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.page-home .score-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-red);
}

.page-home .score-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  padding: 6px 0;
}

.page-home .score-team {
  max-width: 72px;
  text-align: center;
  font-size: 13px;
  color: var(--cream);
  line-height: 1.4;
}

.page-home .score-num {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .page-home .score-num {
    background: linear-gradient(135deg, #fff3b0 0%, var(--gold) 55%, #fff8d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.page-home .score-colon {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  opacity: 0.6;
}

.page-home .score-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.page-home .score-minute {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange-red);
  background: rgba(230, 57, 70, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
}

.page-home .score-status {
  font-size: 12px;
  color: rgba(255, 249, 239, 0.6);
}

.page-home .timer-svg {
  width: 34px;
  height: 34px;
  display: block;
}

.page-home .timer-track {
  stroke: var(--blue-mist);
}

.page-home .timer-progress {
  stroke: var(--gold);
  stroke-dasharray: 70 100;
  stroke-linecap: round;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  animation: page-home-timer-spin 8s linear infinite;
}

@keyframes page-home-timer-spin {
  to { transform: rotate(270deg); }
}

.page-home .hero-visual {
  position: relative;
  background: var(--cream);
  min-height: 300px;
}

.page-home .hero-img-frame {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.page-home .hero-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 25, 47, 0.55));
}

.page-home .hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-schedule-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 249, 239, 0.96);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
}

.page-home .hero-schedule-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-space-blue);
}

.page-home .hero-schedule-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--passion-red);
  border-radius: 2px;
  transform: skewX(-15deg);
}

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

.page-home .hero-schedule-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-size: 13px;
  color: var(--blue-mist);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .hero-schedule-link::before {
  content: "→";
  color: var(--gold);
  font-family: var(--font-mono);
}

.page-home .hero-schedule-link:hover {
  color: var(--passion-red);
}

.page-home .section {
  margin-top: var(--section-gap);
  padding: 0 16px;
}

.page-home .section-head {
  margin-bottom: 22px;
}

.page-home .section-head .section-title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.page-home .section-head .section-sub {
  margin: 0 0 16px;
  max-width: 640px;
  font-size: 14px;
  color: var(--gray-blue);
}

.page-home .section-head .btn {
  margin-top: 2px;
}

.page-home .report-layout {
  display: grid;
  gap: 16px;
}

.page-home .report-feature {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .report-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.page-home .report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .report-content {
  padding: 16px 18px 20px;
}

.page-home .report-content .status-pill {
  margin-bottom: 10px;
  display: inline-block;
}

.page-home .report-content h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .report-points {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.page-home .report-points li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--dark-brown);
}

.page-home .report-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--passion-red);
}

.page-home .report-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .stat-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--deep-space-blue);
  padding: 4px 10px;
  border-radius: 999px;
}

.page-home .live-updates {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .update-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 25, 47, 0.06);
}

.page-home .update-item:last-child {
  border-bottom: 0;
}

.page-home .update-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: var(--deep-space-blue);
  padding: 3px 8px;
  border-radius: 6px;
}

.page-home .update-link {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--dark-brown);
  text-decoration: none;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-home .update-link:hover {
  color: var(--passion-red);
}

.page-home .update-time {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-blue);
}

.page-home .stats-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--deep-space-blue);
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 1px;
  overflow: hidden;
}

.page-home .stat-cell {
  background: var(--deep-space-blue);
  text-align: center;
  padding: 20px 10px;
}

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

.page-home .stat-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255, 249, 239, 0.7);
}

.page-home .review-list {
  display: grid;
  gap: 14px;
}

.page-home .review-item {
  background: var(--cream);
  border-left: 4px solid var(--passion-red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .page-home .review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(10, 25, 47, 0.1);
  }
}

.page-home .review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-home .review-seed {
  font-size: 12px;
  color: var(--gray-blue);
}

.page-home .review-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.page-home .review-title a {
  color: var(--dark-brown);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .review-title a:hover {
  color: var(--passion-red);
}

.page-home .review-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-home .metric {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-mist);
  background: var(--off-white);
  border: 1px solid rgba(74, 100, 145, 0.2);
  border-radius: 6px;
  padding: 3px 8px;
}

.page-home .review-summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-blue);
}

.page-home .expert-layout {
  display: grid;
  gap: 18px;
}

.page-home .expert-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
}

.page-home .expert-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 25, 47, 0.4), transparent 50%);
  pointer-events: none;
}

.page-home .expert-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-home .expert-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
}

.page-home .expert-index {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.page-home .expert-body {
  flex: 1;
}

.page-home .expert-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.page-home .expert-title a {
  color: var(--dark-brown);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .expert-title a:hover {
  color: var(--passion-red);
}

.page-home .expert-meta {
  margin: 0;
  font-size: 12px;
  color: var(--gray-blue);
}

.page-home .member-shell {
  position: relative;
  background: var(--deep-space-blue);
  border-radius: var(--radius-lg);
  color: var(--cream);
  padding: 26px 20px;
  overflow: hidden;
}

.page-home .member-shell::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent 70%);
}

.page-home .member-shell::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.25), transparent 70%);
}

.page-home .member-shell .index-label {
  color: var(--gold);
}

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

.page-home .member-copy .section-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.page-home .member-copy .section-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(255, 249, 239, 0.72);
}

.page-home .member-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .member-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.page-home .feature-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
}

.page-home .feature-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 249, 239, 0.88);
}

.page-home .member-visual {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .member-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .member-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(26, 21, 18, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.page-home .badge-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.page-home .badge-text {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--cream);
}

.page-home .schedule-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .schedule-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--blue-mist) 0 6px,
    transparent 6px 12px
  );
}

.page-home .schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 12px;
  align-items: center;
  padding: 14px 0 14px 44px;
}

.page-home .schedule-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--passion-red);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--passion-red);
}

.page-home .schedule-day {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-blue);
}

.page-home .schedule-league {
  justify-self: start;
  font-size: 11px;
  font-weight: 700;
  color: var(--passion-red);
  background: rgba(230, 57, 70, 0.12);
  border-radius: 4px;
  padding: 2px 8px;
}

.page-home .schedule-match {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark-brown);
}

.page-home .schedule-status {
  grid-column: 2;
  font-size: 12px;
  color: var(--gray-blue);
}

.page-home .page-end-nav {
  padding: 28px 16px 40px;
  text-align: center;
}

@media (min-width: 680px) {
  .page-home .report-layout {
    grid-template-columns: 7fr 5fr;
    align-items: stretch;
  }

  .page-home .report-feature {
    display: grid;
    grid-template-columns: 5fr 7fr;
  }

  .page-home .report-thumb {
    height: 100%;
    aspect-ratio: auto;
  }

  .page-home .report-content {
    padding: 24px 28px 20px;
  }

  .page-home .live-updates {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .page-home .expert-layout {
    grid-template-columns: 5fr 7fr;
    align-items: stretch;
  }

  .page-home .expert-visual {
    height: 100%;
    min-height: 320px;
  }

  .page-home .member-shell {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 28px;
    align-items: center;
    padding: 36px 32px;
  }

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

@media (min-width: 960px) {
  .page-home .page-breadcrumbs {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 32px 0;
  }

  .page-home .hero-arena {
    grid-template-columns: 7fr 5fr;
    max-width: 1320px;
    margin: 20px auto 0;
  }

  .page-home .hero-copy {
    clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 100%, 0 100%);
    padding: 46px 110px 44px 48px;
  }

  .page-home .hero-copy h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  .page-home .hero-lead {
    font-size: 15px;
  }

  .page-home .hero-visual {
    margin-left: -64px;
    min-height: 560px;
  }

  .page-home .hero-img-frame {
    height: 100%;
  }

  .page-home .section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }

  .page-home .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 28px;
  }

  .page-home .section-head .section-sub {
    flex-basis: 100%;
  }

  .page-home .review-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .page-home .schedule-timeline {
    max-width: 860px;
  }

  .page-home .page-end-nav {
    padding: 32px 24px 56px;
  }
}
