.page-home {
  position: relative;
  background: var(--c-bg);
  color: var(--c-text);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0 3rem;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -6%;
  width: 62%;
  height: 80%;
  background: radial-gradient(circle at 60% 40%, rgba(0, 229, 255, 0.14), transparent 65%);
  pointer-events: none;
}

.page-home .home-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 100%);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.page-home .home-hero-copy {
  max-width: 54rem;
}

.page-home .breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.8rem;
}

.page-home .breadcrumb a {
  color: var(--c-cyan);
  text-decoration: none;
}

.page-home .breadcrumb span {
  color: var(--c-text-subtle);
}

.page-home .home-title-band {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  letter-spacing: 0.16em;
  color: var(--c-cyan);
  text-transform: uppercase;
}

.page-home .home-hero h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.page-home .home-hero-desc {
  margin: clamp(1.25rem, 2.5vw, 2rem) 0 0;
  max-width: 47rem;
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.85;
  color: var(--c-text-subtle);
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.page-home .home-hero-arrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--c-text-subtle);
}

.page-home .home-hero-note {
  padding: clamp(1.25rem, 2vw, 2rem);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 42, 84, 0.72), rgba(10, 26, 59, 0.92));
}

.page-home .home-hero-note .side-note {
  margin: 0 0 1rem;
  color: var(--c-cyan);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.page-home .home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.page-home .home-hero-side {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--c-text-subtle);
  border-left: 2px solid var(--c-cyan);
  padding-left: 0.75rem;
}

.page-home .home-hero-spy {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.25rem;
  font-size: 0.82rem;
}

.page-home .home-hero-spy .sep {
  opacity: 0.5;
  color: var(--c-text-subtle);
}

.page-home .section-wrap {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.page-home .home-matches {
  background: linear-gradient(180deg, rgba(17, 42, 84, 0.55) 0%, transparent 80%);
}

.page-home .home-matches-head {
  margin-bottom: 2rem;
}

.page-home .home-matches-head h2,
.page-home .home-ag h2,
.page-home .home-region-head h2,
.page-home .home-subscribe h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.page-home .home-matches-lead {
  margin: 0 0 1rem;
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.75;
}

.page-home .home-matches-sub {
  margin: 0;
  color: var(--c-text-subtle);
  font-size: 0.85rem;
  line-height: 1.7;
}

.page-home .home-matches-sub a,
.page-home .home-region-foot a {
  color: var(--c-accent);
  text-decoration: none;
}

.page-home .home-matches-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .match-card {
  flex: 0 0 85%;
  min-width: 280px;
  max-width: 340px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #112A54 0%, #0A1A3B 100%);
  border: 1px solid rgba(255, 107, 26, 0.18);
}

.page-home .match-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-home .match-card-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-text-subtle);
}

.page-home .match-card-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
}

.page-home .match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.page-home .match-team strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-text);
}

.page-home .match-team .score-pill {
  min-width: 2.5rem;
  text-align: center;
}

.page-home .match-vs {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--c-text-subtle);
}

.page-home .match-stat-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-subtle);
  margin-bottom: 0.45rem;
}

.page-home .match-stat-num {
  color: var(--c-accent);
  font-weight: 600;
}

.page-home .match-top-scorers {
  border-top: 1px dashed rgba(176, 196, 222, 0.2);
  padding-top: 0.8rem;
}

.page-home .match-scorers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page-home .match-scorers li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 107, 26, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--c-text);
}

.page-home .match-scorers b {
  font-family: var(--font-mono);
  color: var(--c-cyan);
  font-weight: 600;
}

.page-home .home-matches-visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.page-home .home-match-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.page-home .home-match-figure img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.2s var(--ease);
}

.page-home .home-match-figure:hover img {
  transform: scale(1.02);
}

.page-home .home-match-figure figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-text);
  background: rgba(10, 26, 59, 0.9);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.page-home .home-ag {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 42, 84, 0.4) 30%, transparent 100%);
}

.page-home .home-ag-head {
  padding-top: 0.25rem;
}

.page-home .home-ag-head p {
  margin: 0 0 1.25rem;
  color: var(--c-text-subtle);
  line-height: 1.8;
}

.page-home .home-ag-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 420px;
}

.page-home .home-ag-table th,
.page-home .home-ag-table td {
  text-align: left;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(176, 196, 222, 0.15);
  color: var(--c-text);
}

.page-home .home-ag-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-cyan);
  background: rgba(0, 229, 255, 0.06);
}

.page-home .home-ag-table td:first-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--c-accent);
}

.page-home .home-region-head p {
  margin: 0;
  color: var(--c-text-subtle);
  line-height: 1.8;
}

.page-home .home-region-panel {
  margin-top: 2rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 42, 84, 0.85), rgba(10, 26, 59, 0.95));
  border: 1px solid rgba(255, 107, 26, 0.2);
}

.page-home .home-region-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .home-region-tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--c-text);
  border-radius: var(--radius-pill);
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.2);
}

.page-home .home-region-tab.is-active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
  font-weight: 700;
}

.page-home .home-region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.page-home .home-region-block {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(10, 26, 59, 0.72);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.page-home .home-region-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-text);
}

.page-home .home-region-block p {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--c-text-subtle);
}

.page-home .home-region-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-region-block li {
  padding: 0.3rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  border-bottom: 1px dashed rgba(255, 107, 26, 0.15);
}

.page-home .home-region-block li:last-child {
  border-bottom: none;
}

.page-home .home-region-img {
  display: block;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.page-home .home-region-foot {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--c-text-subtle);
  text-align: right;
}

.page-home .home-subscribe {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-home .home-subscribe-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 107, 26, 0.22), transparent 55%),
    linear-gradient(145deg, #112A54 0%, #0A1A3B 100%);
  overflow: hidden;
}

.page-home .home-subscribe-copy p {
  margin: 0;
  max-width: 40rem;
  color: var(--c-text-subtle);
  line-height: 1.75;
}

.page-home .home-subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-home .home-subscribe-float {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.5rem);
  bottom: 1.25rem;
  z-index: 50;
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--c-accent);
  color: var(--c-bg);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.page-home .home-subscribe-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.55);
}

@media (min-width: 640px) {
  .page-home .home-matches-visuals {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-home .home-subscribe-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .page-home .match-card {
    flex: 0 0 360px;
    min-width: 360px;
    max-width: 360px;
  }

  .page-home .home-region-panel {
    padding-top: 1.5rem;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5rem);
  }

  .page-home .home-hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .page-home .home-hero h1 {
    font-size: clamp(4.2rem, 9vw, 7.2rem);
  }
}
