.page-home {
  background: var(--paper);
  color: var(--charcoal);
}

.page-home section[id] {
  scroll-margin-top: 80px;
}

.page-home h2 {
  color: var(--charcoal);
}

.page-home .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-blue);
  border-left: 4px solid var(--neon);
  padding-left: 12px;
  margin: 0 0 10px;
}

.page-home .home-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #00209e 52%, var(--ink) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 56px;
}

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

.page-home .hero-media img {
  opacity: 0.4;
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 40%, rgba(0, 51, 204, 0.72) 72%, rgba(0, 51, 204, 0.25) 100%);
}

.page-home .hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255, 255, 255, 0.045) 16px 32px);
}

.page-home .hero-watermark {
  position: absolute;
  top: 60px;
  right: 4vw;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(10rem, 24vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 255, 135, 0.35);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-home .hero-grid {
  display: grid;
  gap: 28px;
  align-items: end;
}

.page-home .breadcrumb {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 18px;
}

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

.page-home .hero-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  margin: 0 0 18px;
  color: var(--white);
}

.page-home .hero-title-line {
  display: block;
}

.page-home .hero-title-sep {
  display: none;
}

.page-home .hero-title-accent {
  display: block;
  color: var(--neon);
}

.page-home .hero-lead {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin-bottom: 24px;
}

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

.page-home .hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  box-shadow: none;
}

.page-home .hero-panel {
  margin-bottom: 8px;
}

.page-home .score-card {
  position: relative;
  background: rgba(10, 10, 10, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 10px 10px 0 rgba(0, 255, 135, 0.24);
  padding: 22px 20px 16px;
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.page-home .score-card::before {
  content: "LIVE";
  position: absolute;
  top: 0;
  right: 22px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px 3px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
}

.page-home .score-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--neon);
  text-transform: uppercase;
  padding-right: 72px;
  margin-bottom: 10px;
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: page-live-dot 1.2s ease-in-out infinite;
}

.page-home .refresh-tag {
  margin-left: auto;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.5);
  padding: 2px 6px;
  font-size: 0.64rem;
}

.page-home .score-rows {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .score-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "team-l score team-r"
    "state state state";
  align-items: center;
  gap: 4px 12px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .score-team {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.page-home .score-team:first-child {
  grid-area: team-l;
  text-align: right;
}

.page-home .score-team:nth-child(3) {
  grid-area: team-r;
}

.page-home .score-num {
  grid-area: score;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  animation: page-score-pulse 30s infinite;
}

.page-home .score-state {
  grid-area: state;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--mid-gray);
  text-transform: uppercase;
  justify-self: end;
}

.page-home .score-state--live {
  color: var(--neon);
}

.page-home .score-state--next {
  color: var(--orange);
}

.page-home .score-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .refresh-tick {
  width: 28px;
  height: 2px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon);
  animation: page-tick 2.4s ease-in-out infinite;
}

.page-home .live-section {
  padding: 72px 0;
  background: var(--paper);
  position: relative;
}

.page-home .live-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--neon), var(--teal), var(--orange));
}

.page-home .live-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.page-home .live-main h2,
.page-home .preview-head h2,
.page-home .subscribe-intro h2,
.page-home .fav-content h2,
.page-home .trust-head h2 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.page-home .live-main .lede,
.page-home .preview-head .lede,
.page-home .subscribe-intro .lede,
.page-home .fav-content .lede {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 720px;
  margin-bottom: 24px;
}

.page-home .live-panels {
  border: var(--border-w) solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--ink);
}

.page-home .live-panel-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  grid-template-areas:
    "index league link"
    "index score link"
    "index meta link";
  column-gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
}

.page-home .live-panel-row:last-child {
  border-bottom: none;
}

.page-home .live-panel-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
}

.page-home .live-panel-row:hover {
  background: rgba(0, 255, 135, 0.06);
}

.page-home .live-panel-row:hover::after {
  background: var(--neon);
}

.page-home .panel-index {
  grid-area: index;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--orange);
  font-weight: 700;
}

.page-home .panel-competition {
  grid-area: league;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.86rem;
}

.page-home .panel-score {
  grid-area: score;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.page-home .panel-meta {
  grid-area: meta;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--mid-gray);
  letter-spacing: 0.04em;
}

.page-home .panel-link {
  grid-area: link;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--deep-blue);
  text-decoration: none;
  border: 1px solid var(--deep-blue);
  padding: 6px 10px;
  white-space: nowrap;
}

.page-home .panel-link:hover {
  background: var(--deep-blue);
  color: var(--white);
}

.page-home .live-note {
  border: var(--border-w) solid var(--ink);
  background: var(--ink);
  padding: 18px;
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--deep-blue);
  margin-top: 16px;
}

.page-home .chart-figure {
  margin: 0 0 18px;
}

.page-home .chart-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--charcoal);
}

.page-home .chart-figure figcaption {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  padding: 10px 2px 0;
}

.page-home .live-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .live-facts li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .live-facts strong {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon);
  min-width: 74px;
}

.page-home .live-facts span {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .preview-section {
  background: var(--ink);
  color: var(--paper);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.page-home .preview-section::before {
  content: "02";
  position: absolute;
  top: 40px;
  right: 3vw;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.page-home .preview-section .section-label {
  color: var(--neon);
}

.page-home .preview-section h2,
.page-home .fav-section h2,
.page-home .trust-section h2 {
  color: var(--white);
}

.page-home .preview-head {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-home .preview-head .lede {
  color: rgba(245, 245, 240, 0.72);
}

.page-home .preview-grid {
  display: grid;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.page-home .injury-card,
.page-home .tactics-card,
.page-home .h2h-card,
.page-home .venue-card {
  background: var(--paper);
  color: var(--charcoal);
}

.page-home .injury-card {
  border: var(--border-w) solid var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
  padding: 22px;
}

.page-home .card-kicker {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--orange);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.page-home .injury-card h3,
.page-home .h2h-card h3,
.page-home .tactics-body h3,
.page-home .venue-body h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.page-home .injury-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .injury-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.page-home .injury-list li:last-child {
  border-bottom: none;
}

.page-home .injury-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.16);
  flex: none;
}

.page-home .card-footnote {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--mid-gray);
  margin: 14px 0 0;
  line-height: 1.6;
}

.page-home .tactics-card {
  border: var(--border-w) solid var(--ink);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--neon);
  overflow: hidden;
}

.page-home .tactics-media {
  position: relative;
  overflow: hidden;
}

.page-home .tactics-media img {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.page-home .media-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.page-home .tactics-body {
  padding: 22px;
}

.page-home .tactics-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 18px;
}

.page-home .h2h-card {
  border: var(--border-w) solid var(--ink);
  background: var(--deep-blue);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--neon);
  padding: 22px;
}

.page-home .h2h-card .card-kicker {
  color: var(--orange);
}

.page-home .h2h-card h3 {
  color: var(--white);
}

.page-home .h2h-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .h2h-chart svg {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 14px;
}

.page-home .h2h-label {
  font-family: var(--font-body);
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.85);
}

.page-home .h2h-bar-w {
  fill: var(--neon);
}

.page-home .h2h-bar-d {
  fill: var(--light-gray);
}

.page-home .h2h-bar-l {
  fill: var(--orange);
}

.page-home .venue-card {
  border: var(--border-w) solid var(--ink);
  box-shadow: 6px 6px 0 var(--teal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-home .venue-media {
  overflow: hidden;
}

.page-home .venue-media img {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
}

.page-home .venue-body {
  padding: 22px;
}

.page-home .venue-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 16px;
}

.page-home .venue-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .venue-meta li {
  display: flex;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: var(--charcoal);
  border-top: 1px dashed var(--light-gray);
  padding-top: 8px;
}

.page-home .venue-meta li span {
  font-weight: 700;
  color: var(--deep-blue);
  min-width: 64px;
}

.page-home .subscribe-section {
  padding: 76px 0;
  background: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(0, 51, 204, 0.03) 18px 36px), var(--paper);
}

.page-home .subscribe-grid {
  display: grid;
  gap: 36px;
}

.page-home .subscribe-intro .btn {
  margin-top: 8px;
}

.page-home .subscribe-steps {
  border: var(--border-w) solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--deep-blue);
  padding: 26px 22px;
  position: relative;
}

.page-home .subscribe-steps::before {
  content: "PATH // 02";
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--neon);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  clip-path: polygon(6px 0, calc(100% - 6px) 0, 100% 100%, 0 100%);
}

.page-home .steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .step-block {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 18px 0;
}

.page-home .step-num {
  flex: none;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  background: var(--neon);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.page-home .step-content h3 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 4px 0 6px;
}

.page-home .step-content p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--mid-gray);
  margin: 0;
}

.page-home .step-line {
  position: absolute;
  left: 29px;
  top: 78px;
  bottom: -8px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--deep-blue) 0 6px, transparent 6px 12px);
}

.page-home .step-block:last-child .step-line {
  display: none;
}

.page-home .step-tip {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 106, 0, 0.08);
  font-family: var(--font-body);
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.page-home .fav-section {
  background: var(--deep-blue);
  color: var(--white);
  padding: 76px 0;
  position: relative;
  overflow: hidden;
}

.page-home .fav-section::after {
  content: "SAVE XI";
  position: absolute;
  right: -8px;
  bottom: -12px;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 9rem);
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.page-home .fav-grid {
  display: grid;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .fav-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.page-home .fav-star {
  width: 140px;
  height: 140px;
  fill: var(--neon);
  filter: drop-shadow(0 0 18px rgba(0, 255, 135, 0.6));
  animation: page-star-float 4s ease-in-out infinite;
}

.page-home .fav-sync {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.55);
  padding: 5px 12px;
}

.page-home .fav-section .section-label {
  color: var(--neon);
}

.page-home .fav-section .lede {
  color: rgba(255, 255, 255, 0.82);
}

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

.page-home .fav-list li {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  padding-left: 26px;
  position: relative;
}

.page-home .fav-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 3px solid var(--neon);
  border-bottom: 3px solid var(--neon);
  transform: rotate(-45deg);
}

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

.page-home .fav-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  box-shadow: none;
}

.page-home .fav-actions .btn-primary {
  box-shadow: 6px 6px 0 var(--ink);
}

.page-home .trust-section {
  background: var(--ink);
  color: var(--paper);
  padding: 76px 0;
  position: relative;
}

.page-home .trust-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--neon) 0%, var(--neon) 70%, var(--orange) 70%, var(--orange) 100%);
}

.page-home .trust-head {
  position: relative;
  z-index: 1;
}

.page-home .trust-head .section-label {
  color: var(--neon);
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 30px;
}

.page-home .trust-stat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  padding: 22px 18px;
}

.page-home .stat-num {
  display: block;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--neon);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}

.page-home .stat-label {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.page-home .trust-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--neon);
  text-decoration: none;
  border-bottom: 1px solid var(--neon);
  padding-bottom: 2px;
}

.page-home .trust-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

@keyframes page-live-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}

@keyframes page-score-pulse {
  0%, 96% {
    color: var(--neon);
    text-shadow: 0 0 0 transparent;
  }
  98% {
    color: var(--orange);
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.65);
  }
  100% {
    color: var(--neon);
    text-shadow: 0 0 10px rgba(0, 255, 135, 0.5);
  }
}

@keyframes page-tick {
  0%, 100% {
    transform: scaleX(0.35);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes page-star-float {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

@media (min-width: 600px) {
  .page-home .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .page-home .home-hero {
    min-height: 780px;
    padding: 120px 0 64px;
  }

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

  .page-home .hero-watermark {
    right: 6vw;
  }

  .page-home .live-section {
    padding: 96px 0;
  }

  .page-home .live-grid {
    grid-template-columns: minmax(0, 8fr) minmax(0, 3fr);
    gap: 44px;
  }

  .page-home .live-note {
    margin-top: 0;
  }

  .page-home .preview-section {
    padding: 108px 0;
  }

  .page-home .preview-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    grid-template-areas:
      "injury tactics"
      "h2h h2h"
      "venue venue";
    align-items: stretch;
  }

  .page-home .injury-card {
    grid-area: injury;
  }

  .page-home .tactics-card {
    grid-area: tactics;
  }

  .page-home .h2h-card {
    grid-area: h2h;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 30px;
    align-items: center;
  }

  .page-home .h2h-chart svg {
    margin-top: 0;
    max-width: 440px;
  }

  .page-home .venue-card {
    grid-area: venue;
    flex-direction: row;
  }

  .page-home .venue-media {
    width: 55%;
  }

  .page-home .venue-media img {
    height: 100%;
    aspect-ratio: auto;
  }

  .page-home .venue-body {
    width: 45%;
    padding: 30px;
  }

  .page-home .subscribe-section {
    padding: 96px 0;
  }

  .page-home .subscribe-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 56px;
    align-items: center;
  }

  .page-home .subscribe-steps {
    padding: 36px 32px;
  }

  .page-home .steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }

  .page-home .step-block {
    padding: 20px 0;
  }

  .page-home .step-line {
    display: none;
  }

  .page-home .step-block:first-child .step-line {
    display: block;
    position: absolute;
    left: calc(100% + 12px);
    top: 34px;
    bottom: auto;
    width: 40px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--deep-blue) 0 6px, transparent 6px 10px);
  }

  .page-home .step-block:last-child .step-line {
    display: none !important;
  }

  .page-home .fav-section {
    padding: 96px 0;
  }

  .page-home .fav-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 60px;
  }

  .page-home .trust-section {
    padding: 96px 0;
  }

  .page-home .trust-grid {
    gap: 24px;
  }
}
