.page-home {
  --home-gap: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 196, 0, 0.1) 0%, transparent 32%),
    linear-gradient(140deg, var(--deep-space-blue) 0%, var(--nebula-purple) 100%);
  color: var(--silver-mist);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-home .home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100vh;
}

.page-home .home-side {
  position: relative;
  z-index: 5;
  padding: 2rem 1.375rem 1.5rem;
  background: linear-gradient(180deg, rgba(11, 16, 38, 0.92) 0%, rgba(26, 16, 64, 0.78) 100%);
  border-bottom: 1px solid rgba(255, 196, 0, 0.28);
}

.page-home .home-side__inner {
  max-width: 440px;
  margin: 0 auto;
}

.page-home .home-side .section-label {
  margin-top: 1.25rem;
}

.page-home .home-side h1 {
  margin: 0.7rem 0 1rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.3rem, 7.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: #ffffff;
  transform: skew(-2deg);
  text-shadow: 0 0 28px rgba(255, 196, 0, 0.14);
}

.page-home .home-side__lead {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--metallic-gray);
}

.page-home .home-side__nav {
  display: grid;
  gap: 0.375rem;
  margin-bottom: 1.75rem;
}

.page-home .home-side__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(200, 208, 224, 0.85);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-home .home-side__link:hover,
.page-home .home-side__link.is-active {
  color: var(--starlight-gold);
  background: linear-gradient(90deg, rgba(255, 196, 0, 0.16) 0%, transparent 76%);
  border-left-color: var(--starlight-gold);
  transform: translateX(4px);
}

.page-home .home-side__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--electric-blue);
}

.page-home .home-side__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(200, 208, 224, 0.16);
  padding-top: 1.25rem;
}

.page-home .home-side__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  width: 100%;
  margin-top: 0.375rem;
}

.page-home .home-side__links a {
  font-size: 0.8rem;
  color: var(--metallic-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .home-side__links a:hover {
  color: var(--electric-blue);
}

.page-home .home-main {
  min-width: 0;
}

.page-home .home-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 3.5rem 1.25rem;
  background: var(--deep-space-blue);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 196, 0, 0.18) 0%, transparent 46%),
    linear-gradient(135deg, rgba(11, 16, 38, 0.82) 0%, rgba(26, 16, 64, 0.34) 100%);
  pointer-events: none;
}

.page-home .countdown-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 540px);
  padding: 2.25rem 1.75rem 2rem;
  background: linear-gradient(155deg, rgba(21, 29, 53, 0.96) 0%, rgba(11, 16, 38, 0.92) 100%);
  border: 1px solid rgba(255, 196, 0, 0.42);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% calc(100% - 16px), 26px 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.page-home .countdown-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 16%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.9);
  animation: home-star-pulse 2s ease-in-out infinite;
}

.page-home .countdown-panel__eyebrow {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.page-home .countdown-panel__match {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  color: #ffffff;
  letter-spacing: 0.02em;
}

.page-home .countdown-panel__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.page-home .countdown-panel__cell {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
}

.page-home .countdown-panel__num {
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  line-height: 0.95;
  font-weight: 700;
  color: var(--starlight-gold);
  text-shadow: 0 0 38px rgba(255, 196, 0, 0.28);
  letter-spacing: 0.02em;
}

.page-home .countdown-panel__unit {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--metallic-gray);
}

.page-home .countdown-panel__colon {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.15;
  color: var(--electric-blue);
  animation: home-colon-blink 1.1s step-end infinite;
}

.page-home .countdown-panel__note {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--silver-mist);
}

.page-home .countdown-panel__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.page-home .countdown-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--positive-green);
  border: 1px solid rgba(0, 255, 136, 0.45);
  background: rgba(0, 255, 136, 0.07);
  padding: 0.3rem 0.55rem;
}

.page-home .home-section {
  position: relative;
  padding: 3rem 1.375rem;
}

.page-home .home-section--updates {
  background: rgba(21, 29, 53, 0.35);
}

.page-home .home-section--features {
  background: linear-gradient(180deg, rgba(26, 16, 64, 0.55) 0%, rgba(11, 16, 38, 0.25) 100%);
}

.page-home .home-section--stats {
  background: rgba(11, 16, 38, 0.35);
}

.page-home .home-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.page-home .home-section__num {
  font-family: var(--font-mono);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--starlight-gold);
}

.page-home .home-section__head .section-label {
  margin-top: 0.35rem;
}

.page-home .home-section h2 {
  margin: 0.3rem 0 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.45rem, 3.8vw, 2.2rem);
  color: #ffffff;
  transform: skew(-2deg);
}

.page-home .match-list {
  display: grid;
  gap: var(--home-gap);
}

.page-home .match-feature {
  display: grid;
  background: var(--panel-dark);
  border: 1px solid rgba(200, 208, 224, 0.16);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 28px 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-home .match-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.page-home .match-feature__media {
  overflow: hidden;
}

.page-home .match-feature__img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  display: block;
}

.page-home .match-feature__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
  align-content: center;
}

.page-home .match-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.page-home .match-tag {
  color: var(--electric-blue);
  border: 1px solid rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.08);
  padding: 0.2rem 0.5rem;
}

.page-home .match-time {
  color: var(--metallic-gray);
  letter-spacing: 0.08em;
}

.page-home .match-feature__title,
.page-home .match-mini__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #ffffff;
}

.page-home .match-feature__title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

.page-home .match-feature__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--silver-mist);
}

.page-home .match-list__grid {
  display: grid;
  gap: 1.25rem;
}

.page-home .match-mini {
  padding: 1.25rem;
  background: rgba(21, 29, 53, 0.72);
  border: 1px solid rgba(200, 208, 224, 0.14);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 100%, 18px 100%);
  display: grid;
  gap: 0.5rem;
  align-content: start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-home .match-mini:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 0, 0.4);
}

.page-home .match-mini__title {
  font-size: 1.1rem;
}

.page-home .match-mini__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--metallic-gray);
}

.page-home .match-mini__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--starlight-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .match-mini__link:hover {
  color: var(--electric-blue);
}

.page-home .article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.page-home .article-item {
  padding: 1.25rem 1.25rem 1.35rem;
  background: rgba(21, 29, 53, 0.55);
  border: 1px solid rgba(200, 208, 224, 0.12);
  border-left: 4px solid var(--electric-blue);
  display: grid;
  gap: 0.4rem;
}

.page-home .article-item__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--positive-green);
}

.page-home .article-item__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #ffffff;
}

.page-home .article-item__summary {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--metallic-gray);
}

.page-home .article-item__link {
  margin-top: 0.25rem;
  justify-self: start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--starlight-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-home .article-item__link:hover {
  color: var(--electric-blue);
}

.page-home .feature-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-home .feature-cell {
  padding: 1.5rem 1.25rem;
  background: linear-gradient(150deg, rgba(26, 16, 64, 0.8) 0%, rgba(21, 29, 53, 0.7) 100%);
  border: 1px solid rgba(255, 196, 0, 0.2);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 100%, 22px 100%);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-home .feature-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 0, 0.55);
}

.page-home .feature-cell__icon {
  display: inline-block;
  font-size: 1.3rem;
  color: var(--electric-blue);
  margin-bottom: 0.6rem;
}

.page-home .feature-cell__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  color: #ffffff;
}

.page-home .feature-cell__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--silver-mist);
}

.page-home .feature-visual {
  display: grid;
  justify-items: center;
  margin-top: 1rem;
}

.page-home .feature-visual img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.page-home .stats-panel {
  position: relative;
  overflow: hidden;
  background: var(--panel-dark);
  border: 1px solid rgba(255, 196, 0, 0.2);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 100%, 34px 100%);
}

.page-home .stats-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  padding: 2rem 1.25rem;
}

.page-home .stat-cell {
  display: grid;
  gap: 0.3rem;
}

.page-home .stat-cell__num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1;
  color: var(--starlight-gold);
}

.page-home .stat-cell__label {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--metallic-gray);
}

.page-home .stats-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 196, 0, 0.06);
  border-left: 4px solid var(--starlight-gold);
}

.page-home .stats-cta__note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--silver-mist);
}

@keyframes home-colon-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes home-star-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.45; }
}

@media (min-width: 768px) {
  .page-home .home-side__inner {
    max-width: none;
  }

  .page-home .home-hero {
    min-height: 600px;
  }

  .page-home .match-list__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-home .feature-visual img {
    max-width: 360px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-shell {
    grid-template-columns: 380px minmax(0, 1fr);
  }

  .page-home .home-side {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 3.5rem 2.5rem;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 196, 0, 0.22);
    background: linear-gradient(160deg, rgba(11, 16, 38, 0.95) 0%, rgba(26, 16, 64, 0.85) 100%);
  }

  .page-home .home-side__inner {
    max-width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .page-home .home-side__footer {
    margin-top: auto;
  }

  .page-home .home-main {
    width: 100%;
  }

  .page-home .home-hero {
    min-height: 680px;
    padding: 5rem 3.5rem;
  }

  .page-home .home-section {
    padding: 4rem 3.5rem;
  }

  .page-home .home-section__num {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
  }

  .page-home .match-feature {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .page-home .match-feature__img {
    max-height: none;
    height: 100%;
  }

  .page-home .match-feature__body {
    padding: 2.25rem;
  }

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

  .page-home .feature-visual img {
    max-width: 420px;
  }
}
