.page-home {
  --page-surface: #0F1624;
  --page-surface-2: #121A2B;
  position: relative;
  overflow-x: clip;
  background: var(--bg);
  color: #DCE4F5;
}

.page-home__ghost {
  position: absolute;
  top: 120px;
  right: -12px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 200px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 212, 255, 0.1);
  pointer-events: none;
  user-select: none;
}

.hero-live {
  position: relative;
  padding-bottom: 0;
  border-bottom: 2px solid var(--blue);
  background: linear-gradient(180deg, #060911 0%, #0A0E17 100%);
}

.hero-live__vis {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-live__vis img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  opacity: 0.4;
}

.hero-live__vis::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 9, 17, 0.98) 8%, rgba(10, 14, 23, 0.82) 46%, rgba(10, 14, 23, 0.44) 100%);
}

.hero-live__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-top: 28px;
  padding-bottom: 36px;
}

.hero-live__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.hero-live__crumb a {
  color: var(--blue);
  text-decoration: none;
}

.hero-live__crumb em {
  font-style: normal;
  color: var(--paper);
}

.hero-live__crumb span[aria-hidden] {
  opacity: 0.5;
}

.hero-live__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-live__eyebrow {
  margin-bottom: 12px;
}

.hero-live__intro h1 {
  max-width: 11em;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.12), 0 0 4px rgba(0, 0, 0, 0.5);
}

.hero-live__lead {
  max-width: 44ch;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-live__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-live__meta-item {
  padding-left: 10px;
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid var(--green);
}

.hero-live__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-live__cta {
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.18);
}

.hero-live__board {
  background: rgba(15, 22, 36, 0.88);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.board__title {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.board__cycle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
}

.board__cycle i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: boye-live-dot 1.6s ease-in-out infinite;
}

@keyframes boye-live-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.72); }
}

.board__progress {
  height: 3px;
  overflow: hidden;
  background: rgba(28, 35, 51, 0.8);
}

.board__progress i {
  display: block;
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 100%);
  animation: boye-refresh-10s 10s linear infinite;
  will-change: width;
}

@keyframes boye-refresh-10s {
  0% { width: 0%; opacity: 0.6; }
  60% { width: 76%; }
  100% { width: 100%; opacity: 1; }
}

.board__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.board__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 54px;
  grid-template-areas:
    "time home score state"
    "time away score state";
  align-items: center;
  column-gap: 8px;
  row-gap: 2px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.25s ease;
}

.board__row:hover {
  background: rgba(0, 212, 255, 0.08);
}

.board__row:last-child {
  border-bottom: none;
}

.board__time {
  grid-area: time;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.board__team {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.board__team--home {
  grid-area: home;
}

.board__team--away {
  grid-area: away;
  text-align: left;
}

.board__score {
  grid-area: score;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  color: var(--paper);
}

.board__score b {
  font-size: 18px;
  color: var(--blue);
}

.board__score em {
  font-style: normal;
  color: var(--muted);
}

.board__state {
  grid-area: state;
  justify-self: end;
  padding: 4px 8px;
  font-size: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(160, 168, 184, 0.04);
}

.board__state--live {
  color: var(--red);
  border-color: rgba(255, 59, 92, 0.55);
  background: rgba(255, 59, 92, 0.12);
}

.board__note {
  margin: 0;
  padding: 12px 20px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.hero-live__speedline {
  position: absolute;
  bottom: 6px;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 86px;
  pointer-events: none;
  opacity: 0.8;
}

.hero-live__speedline path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 40 260;
  opacity: 0.55;
  animation: boye-flow-line 4.5s linear infinite;
}

.hero-live__speed-2 {
  stroke: var(--green);
  animation-delay: -1.5s;
}

.hero-live__speed-3 {
  stroke: var(--blue);
  animation-delay: -3s;
}

@keyframes boye-flow-line {
  to { stroke-dashoffset: -300; }
}

.v3-angle {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(0, 212, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #0F1624 0%, #131B2E 52%, #0D1322 100%);
}

.v3-angle__slice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.v3-angle::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: var(--bg);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.v3-angle__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.v3-angle__media {
  position: relative;
  margin: 0;
}

.v3-angle__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.v3-angle__media figcaption {
  padding: 12px 0;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.v3-angle__content h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.1;
  color: var(--paper);
}

.v3-angle__lead {
  max-width: 52ch;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.v3-angle__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0;
  border: 1px solid var(--border);
  background: rgba(10, 14, 23, 0.4);
}

.v3-angle__old,
.v3-angle__new {
  padding: 18px 14px;
}

.v3-angle__old {
  border-right: 1px solid var(--border);
}

.v3-angle__old span,
.v3-angle__new span {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.v3-angle__old p,
.v3-angle__new p {
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.v3-angle__new p {
  color: #E8EEF9;
}

.v3-angle__old b,
.v3-angle__new b {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
}

.v3-angle__old b {
  color: var(--muted);
}

.v3-angle__new {
  border-left: 3px solid var(--blue);
  background: rgba(0, 212, 255, 0.06);
}

.v3-angle__new b {
  color: var(--green);
}

.v3-angle__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.v3-angle__features li {
  padding: 14px 12px;
  border: 1px solid var(--border);
  background: rgba(6, 9, 17, 0.45);
}

.v3-angle__features b {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--blue);
}

.v3-angle__features li:nth-child(2) b {
  color: var(--green);
}

.v3-angle__features li:nth-child(3) b {
  color: var(--paper);
}

.v3-angle__features span {
  font-size: 12px;
  color: var(--muted);
}

.v3-angle__link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.v3-angle__link:hover {
  color: var(--green);
  border-color: var(--green);
}

.sub-guide {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background: var(--bg);
}

.sub-guide::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 260px;
  height: 260px;
  border: 32px solid rgba(0, 212, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.sub-guide__panel {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--page-surface) 0%, var(--page-surface-2) 100%);
}

.sub-guide__copy {
  padding: 32px 22px;
  border-bottom: 1px solid var(--border);
}

.sub-guide__copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.15;
  color: var(--paper);
}

.sub-guide__copy p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.sub-guide__cta {
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
}

.sub-guide__help {
  margin-top: 18px !important;
  margin-bottom: 0 !important;
  font-size: 13px !important;
}

.sub-guide__help a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 136, 0.3);
}

.sub-guide__help a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.sub-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-guide__steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}

.sub-guide__steps li:last-child {
  border-bottom: none;
}

.sub-guide__steps li span {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green);
  border: 1px solid rgba(57, 255, 136, 0.35);
  background: rgba(57, 255, 136, 0.08);
}

.sub-guide__steps li div {
  min-width: 0;
}

.sub-guide__steps li b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  color: #E8EEF9;
}

.sub-guide__steps li p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.hot-local {
  position: relative;
  padding: 76px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0D1424 100%);
}

.hot-local__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 32px;
}

.hot-local__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.1;
  color: var(--paper);
}

.hot-local__more {
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid rgba(0, 212, 255, 0.35);
}

.hot-local__more:hover {
  color: var(--green);
  border-color: var(--green);
}

.hot-local__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hot-local__feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--page-surface);
}

.hot-local__feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 18%;
  filter: saturate(1.08) contrast(1.02);
}

.hot-local__featureinfo {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px 20px;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.4) 0%, rgba(10, 14, 23, 0.96) 100%);
}

.hot-local__featureinfo h3 {
  margin: 14px 0 6px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  color: var(--paper);
}

.hot-local__featureinfo p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.hot-local__list {
  display: grid;
  align-content: start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.hot-local__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.hot-local__item .tag {
  margin-bottom: 10px;
}

.hot-local__item h3 {
  margin: 6px 0 8px;
  font-size: 19px;
  line-height: 1.3;
}

.hot-local__item h3 a {
  color: #E8EEF9;
  text-decoration: none;
}

.hot-local__item h3 a:hover {
  color: var(--blue);
}

.hot-local__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.hot-local__item--note {
  padding: 18px 0 8px;
}

.hot-local__meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hot-local__meta-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.hot-local__meta-links a:hover {
  color: var(--green);
  border-color: var(--green);
}

.observe-picks {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: #0D1424;
}

.observe-picks__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}

.observe-picks__backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.observe-picks__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 20, 36, 0.96) 20%, rgba(10, 14, 23, 0.75) 70%, rgba(13, 20, 36, 0.9) 100%);
}

.observe-picks__inner {
  position: relative;
  z-index: 2;
}

.observe-picks__inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.1;
  color: var(--paper);
}

.observe-picks__lead {
  max-width: 58ch;
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.observe-picks__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.observe-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 20px;
  background: rgba(10, 14, 23, 0.82);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

.observe-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 22, 36, 0.92);
  border-color: rgba(0, 212, 255, 0.65);
}

.observe-card:nth-child(2) {
  border-top-color: var(--green);
}

.observe-card:nth-child(3) {
  border-top-color: var(--red);
}

.observe-card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--blue);
  border: 1px solid rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.08);
}

.observe-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  line-height: 1.35;
  color: #E8EEF9;
}

.observe-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.observe-card a {
  margin-top: auto;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 136, 0.3);
}

.observe-card a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

@media (min-width: 860px) {
  .observe-picks__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .observe-picks {
    padding: 88px 0 72px;
  }
}

@media (max-width: 520px) {
  .v3-angle__features {
    grid-template-columns: 1fr 1fr;
  }

  .v3-angle__features li:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .v3-angle__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 64px;
  }

  .sub-guide__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }

  .sub-guide__copy {
    padding: 52px 48px;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .hot-local__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-live__inner {
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-live__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 60px;
  }

  .hero-live__intro {
    padding-bottom: 30px;
  }
}
