.page-home {
  --skew-cut: -3deg;
  background: var(--paper);
  overflow-x: clip;
}

.page-home .homecrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.62);
}

.page-home .homecrumb__item--current {
  color: var(--yellow);
  font-weight: 700;
}

.page-home .home-hero {
  background: linear-gradient(118deg, var(--night) 0%, var(--night) 66%, rgba(255, 61, 46, 0.42) 140%);
  color: #fff;
  position: relative;
  padding: 0 0 96px;
  border-bottom: 6px solid var(--red);
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 26px;
  background: linear-gradient(100deg, var(--red), var(--yellow));
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 72%);
  pointer-events: none;
}

.page-home .home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.page-home .home-hero__heading {
  padding-top: 32px;
}

.page-home .home-hero__heading h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(34px, 8vw, 64px);
  line-height: 1.06;
  margin: 16px 0 22px;
  text-shadow: 4px 5px 0 rgba(255, 61, 46, 0.32);
  max-width: 720px;
}

.page-home .home-hero__heading h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 10px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  clip-path: polygon(0 0, 100% 0, 86% 100%, 8% 100%);
}

.page-home .home-hero__lead {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
  margin: 0;
}

.page-home .btn-row {
  margin-top: 28px;
}

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

.page-home .hero-img-block {
  position: relative;
  overflow: hidden;
  transform: skewX(var(--skew-cut));
  box-shadow: 18px 18px 0 rgba(255, 197, 61, 0.24);
}

.page-home .hero-img-block img {
  display: block;
  width: 106%;
  max-width: none;
  margin-left: -3%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: skewX(3deg) scale(1.04);
}

.page-home .yun-card {
  background: var(--paper-light);
  border: 1px solid rgba(185, 144, 75, 0.5);
  border-top: 6px solid var(--red);
  color: var(--ink);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 2;
  margin: 22px 0 0 14px;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.page-home .yun-card__head {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(185, 144, 75, 0.32);
}

.page-home .yun-card__mark {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  color: var(--red);
  line-height: 1;
}

.page-home .yun-card__sub {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.12em;
}

.page-home .yun-card__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px 18px;
  text-decoration: none;
  color: var(--ink);
  border-top: 2px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .yun-card__link:hover,
.page-home .yun-card__link:focus-visible {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(255, 61, 46, 0.18);
  outline: none;
}

.page-home .yun-card__num {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--gray);
}

.page-home .yun-card__link--red .yun-card__num {
  color: var(--red);
}

.page-home .yun-card__link--yellow .yun-card__num {
  color: var(--gold);
}

.page-home .yun-card__label {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.page-home .yun-card__meta {
  font-size: 12px;
  color: var(--gray);
}

.page-home .weekend-report {
  background: var(--paper);
  position: relative;
  padding: 84px 0 90px;
}

.page-home .weekend-report::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 6%;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  clip-path: polygon(0 0, 100% 20%, 74% 100%, 12% 72%);
  opacity: 0.14;
  pointer-events: none;
}

.page-home .section-head {
  display: block;
  margin-bottom: 36px;
  max-width: 720px;
}

.page-home .section-head__desc {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .section-head--light h2 {
  color: #fff;
}

.page-home .section-head--light .section-head__desc {
  color: rgba(255, 255, 255, 0.72);
}

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

.page-home .weekend-media {
  position: relative;
}

.page-home .weekend-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: skewX(1.5deg);
  border: 6px solid var(--paper-light);
  box-shadow: 12px 12px 0 rgba(26, 28, 36, 0.08);
}

.page-home .weekend-media .stamp-tag {
  position: absolute;
  right: 4px;
  bottom: 18px;
}

.page-home .match-card {
  background: var(--paper-light);
  border: 1px solid rgba(185, 144, 75, 0.45);
  padding: 26px 24px 28px;
  position: relative;
  box-shadow: 10px 10px 0 rgba(26, 28, 36, 0.06);
}

.page-home .match-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--yellow));
}

.page-home .match-card__roundbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed rgba(26, 28, 36, 0.14);
  padding-bottom: 12px;
}

.page-home .match-card__roundtext {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.page-home .match-card__sync {
  font-size: 12px;
  color: var(--gray);
}

.page-home .match-card__score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 30px 0 18px;
}

.page-home .match-card__team {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .match-card__teamname {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  line-height: 1.2;
}

.page-home .match-card__teamstat {
  font-size: 12px;
  color: var(--gray);
}

.page-home .match-card__result {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  padding: 0 8px;
  white-space: nowrap;
}

.page-home .match-card__events {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.page-home .match-card__events li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--char);
  line-height: 1.6;
}

.page-home .match-card__events li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.page-home .match-card__subscribe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--paper);
  border: 1px dashed rgba(185, 144, 75, 0.6);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.page-home .match-card__subscribe-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.page-home .round-meter {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.page-home .round-meter__svg {
  display: block;
  filter: drop-shadow(2px 2px 0 rgba(255, 61, 46, 0.16));
}

.page-home .round-meter__track {
  stroke: #E8E0D0;
}

.page-home .round-meter__bar {
  stroke: var(--red);
}

.page-home .round-meter__label {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.page-home .bigscreen-replay {
  background: var(--night);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
}

.page-home .bigscreen-replay::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 40px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 61, 46, 0.2), transparent 62%);
  pointer-events: none;
}

.page-home .bigscreen-replay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  pointer-events: none;
}

.page-home .bigscreen-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .bigscreen-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .bigscreen-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 26px;
}

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

.page-home .bigscreen-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.page-home .bigscreen-count {
  position: absolute;
  right: 0;
  bottom: -18px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: var(--ink);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: skewX(-6deg);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.page-home .bigscreen-count__num {
  font-family: var(--font-data);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.page-home .bigscreen-count__unit {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.page-home .venue-quicklook {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-light) 48%, var(--paper) 100%);
  padding: 88px 0 96px;
}

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

.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .filter-bar__btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .filter-bar__btn:hover,
.page-home .filter-bar__btn:focus-visible {
  background: rgba(185, 144, 75, 0.12);
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.page-home .filter-bar__btn--active {
  background: var(--night);
  border-color: var(--night);
  color: #fff;
}

.page-home .venue-views {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .venue-view {
  background: var(--paper-light);
  border: 1px solid rgba(185, 144, 75, 0.4);
  padding-bottom: 12px;
}

.page-home .venue-view__title {
  margin: 0;
  padding: 14px 16px 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gray);
}

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

.page-home .venue-table th {
  text-align: left;
  font-size: 12px;
  color: var(--gray);
  border-bottom: 1px solid rgba(26, 28, 36, 0.12);
  padding: 10px 16px;
  white-space: nowrap;
}

.page-home .venue-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(26, 28, 36, 0.06);
  white-space: nowrap;
}

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

.page-home .venue-table tbody tr:hover {
  background: rgba(255, 197, 61, 0.18);
}

.page-home .venue-table tr:last-child td {
  border-bottom: 0;
}

.page-home .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.page-home .status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.page-home .status-dot--ok {
  color: #1D7A44;
}

.page-home .status-dot--warn {
  color: #B35C00;
}

.page-home .venue-ticket-note {
  margin: 0;
  padding: 10px 16px 4px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.page-home .venue-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.page-home .venue-panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--paper-light);
  box-shadow: 12px 12px 0 rgba(26, 28, 36, 0.08);
}

.page-home .venue-panel__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--night);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-left: 5px solid var(--yellow);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.page-home .venue-panel__stat {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 900;
}

.page-home .venue-panel__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .venue-panel__link {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .venue-panel__link:hover,
.page-home .venue-panel__link:focus-visible {
  text-decoration: underline;
}

.page-home .platform-stats {
  background: var(--paper);
  padding: 88px 0 48px;
  position: relative;
}

.page-home .platform-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--night));
}

.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-home .stat-card {
  background: var(--paper-light);
  border: 1px solid rgba(185, 144, 75, 0.45);
  padding: 22px 20px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 6px 6px 0 rgba(26, 28, 36, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .stat-card:hover,
.page-home .stat-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(26, 28, 36, 0.08);
}

.page-home .stat-card--gradient {
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: var(--ink);
  border: none;
}

.page-home .stat-card--dark {
  background: var(--night);
  color: #fff;
  border-color: var(--night);
}

.page-home .stat-number {
  font-family: var(--font-data);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  position: relative;
}

.page-home .stat-number::after {
  content: "";
  display: block;
  width: 28px;
  height: 4px;
  background: var(--red);
  margin-top: 8px;
}

.page-home .stat-card--gradient .stat-number::after {
  background: var(--night);
}

.page-home .stat-card--dark .stat-number::after {
  background: var(--yellow);
}

.page-home .stat-label {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.page-home .stat-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
}

.page-home .stat-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.page-home .stat-card--gradient p {
  color: rgba(26, 28, 36, 0.72);
}

.page-home .stats-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(185, 144, 75, 0.35);
  display: grid;
  gap: 20px;
}

.page-home .stats-footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--char);
  max-width: 900px;
}

.page-home .stats-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .stats-index {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed rgba(185, 144, 75, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-size: 14px;
}

.page-home .stats-index__caption {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.page-home .stats-index a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-home .stats-index a:hover,
.page-home .stats-index a:focus-visible {
  border-bottom-color: var(--red);
  color: var(--red);
}

@media (min-width: 860px) {
  .page-home .home-hero {
    padding-bottom: 130px;
  }

  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 48px;
    align-items: center;
  }

  .page-home .home-hero__heading {
    padding-top: 64px;
  }

  .page-home .home-hero__stage {
    padding-top: 40px;
  }

  .page-home .yun-card {
    margin: -56px 0 0 28px;
  }

  .page-home .weekend-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: center;
  }

  .page-home .match-card {
    padding: 32px;
  }

  .page-home .bigscreen-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 60px;
  }

  .page-home .bigscreen-count {
    right: -14px;
    bottom: -26px;
    padding: 16px 22px;
  }

  .page-home .bigscreen-count__num {
    font-size: 40px;
  }

  .page-home .venue-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 56px;
    align-items: center;
  }

  .page-home .venue-views {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .page-home .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
  }

  .page-home .stat-card:nth-child(2) {
    margin-top: 26px;
  }

  .page-home .stat-card:nth-child(4) {
    margin-top: 44px;
  }

  .page-home .stats-footer {
    gap: 22px;
  }
}
