.page-home {
  --home-glow: rgba(57, 255, 20, 0.14);
  --home-gold-glow: rgba(255, 215, 0, 0.16);
  --home-surface: #102A4C;
  --home-surface-deep: #071226;
  --home-line: rgba(245, 249, 252, 0.16);
  background: linear-gradient(180deg, #0B1D3A 0%, #071226 100%);
  color: #F5F9FC;
  overflow-x: hidden;
}

.page-home .container {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.page-home .section-kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neon-green, #39FF14);
  font-weight: 500;
  margin: 0 0 8px;
}

.page-home .section-title {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

.page-home .section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.page-home .section-heading__more {
  font-size: 14px;
  color: #9AB0C8;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.4);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color .2s ease;
}

.page-home .section-heading__more:hover {
  color: #39FF14;
}

.page-home .home-hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(16, 42, 76, 0.72), transparent 52%),
    linear-gradient(135deg, #0B1D3A 0%, #071226 78%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 65% 40%, rgba(0, 0, 0, 0.8) 0%, transparent 72%);
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-home .home-hero__copy {
  max-width: 640px;
}

.page-home .home-hero__title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 8px 0 20px;
}

.page-home .neon-word {
  color: #39FF14;
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

.page-home .home-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: #9AB0C8;
  max-width: 580px;
  margin: 0 0 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform .2s ease-out, box-shadow .2s ease-out, background .2s ease-out;
}

.page-home .site-btn--neon {
  background: #39FF14;
  color: #071226;
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.22);
}

.page-home .site-btn--neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 28px rgba(57, 255, 20, 0.36);
}

.page-home .site-btn--ghost {
  border: 1px solid rgba(245, 249, 252, 0.28);
  color: #F5F9FC;
  background: transparent;
}

.page-home .site-btn--ghost:hover {
  transform: translateY(-2px);
  border-color: #39FF14;
  color: #39FF14;
}

.page-home .site-btn--dark {
  background: #071226;
  border: 1px solid rgba(57, 255, 20, 0.5);
  color: #39FF14;
}

.page-home .site-btn--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.18);
}

.page-home .home-hero__panel {
  position: relative;
  background: linear-gradient(150deg, #102A4C 0%, #071226 100%);
  border: 1px solid var(--home-line);
  border-left: 2px solid #39FF14;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(7, 18, 38, 0.4);
  overflow: hidden;
}

.page-home .home-hero__panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 50%, rgba(57, 255, 20, 0.12) 50%);
  pointer-events: none;
}

.page-home .home-hero__panel-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.page-home .home-hero__live-badge {
  font-size: 12px;
  font-weight: 600;
  color: #39FF14;
  border: 1px solid rgba(57, 255, 20, 0.32);
  padding: 4px 10px;
  border-radius: 40px;
  background: rgba(57, 255, 20, 0.06);
}

.page-home .home-hero__live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #39FF14;
  animation: home-pulse 1.8s ease-in-out infinite;
  margin-right: 6px;
  vertical-align: 1px;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.4); }
  50% { opacity: .7; box-shadow: 0 0 0 6px rgba(57, 255, 20, 0); }
}

.page-home .home-hero__metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .home-hero__metric {
  background: rgba(7, 18, 38, 0.5);
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-hero__metric-num {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: #39FF14;
}

.home-hero__metric:nth-child(2) .home-hero__metric-num {
  color: #FFD700;
}

.page-home .home-hero__division {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: rgba(16, 42, 76, 0.7);
  border-radius: 12px;
  margin-bottom: 16px;
}

.page-home .home-hero__dots {
  display: flex;
  gap: 6px;
}

.page-home .home-hero__dot {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: rgba(245, 249, 252, 0.14);
}

.page-home .home-hero__dot.is-active {
  background: #39FF14;
  width: 36px;
}

.page-home .home-hero__panel-bg {
  position: absolute;
  right: -120px;
  bottom: -60px;
  width: 300px;
  height: 300px;
  object-fit: cover;
  opacity: 0.38;
  border-radius: 24px;
  pointer-events: none;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 72%);
}

.page-home .home-hero__shortcuts {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #F5F9FC;
  text-decoration: none;
  border: 1px solid var(--home-line);
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(16, 42, 76, 0.45);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.page-home .home-shortcut:hover {
  border-color: #39FF14;
  color: #39FF14;
  transform: translateY(-2px);
}

.page-home .home-shortcut__num {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  color: #39FF14;
}

.page-home .home-hero__scanline {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.55), transparent);
  animation: home-scan 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes home-scan {
  0%, 100% { left: -30%; opacity: 0; }
  12% { opacity: 1; }
  50% { opacity: 1; }
  70% { opacity: 0; }
  82% { left: 110%; }
}

.page-home .bento-section {
  padding: 64px 0 56px;
  position: relative;
}

.page-home .bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.page-home .bento-cell {
  position: relative;
  background: linear-gradient(155deg, rgba(16, 42, 76, 0.86) 0%, rgba(7, 18, 38, 0.92) 100%);
  border: 1px solid var(--home-line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 24px rgba(7, 18, 38, 0.28);
  transition: transform .2s ease-out, border-color .2s ease-out;
}

.page-home .bento-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 20, 0.36);
}

.page-home .bento-cell--focus {
  grid-column: 1 / -1;
  border-left: 3px solid #39FF14;
}

.page-home .bento-cell--focus::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 24px;
  width: 28px;
  height: 28px;
  background: rgba(57, 255, 20, 0.5);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.page-home .bento-cell--neon {
  border-left: 2px solid rgba(57, 255, 20, 0.7);
}

.page-home .bento-cell--4 { grid-column: 1 / -1; }
.page-home .bento-cell--7 { grid-column: 1 / -1; }
.page-home .bento-cell--8 { grid-column: 1 / -1; }

.page-home .bento-cell__title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  margin: 4px 0 12px;
  letter-spacing: -0.01em;
}

.page-home .data-label {
  font-size: 12px;
  color: #9AB0C8;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.page-home .data-number {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #F5F9FC;
  display: inline-block;
}

.page-home .data-number--neon { color: #39FF14; }
.page-home .data-number--gold { color: #FFD700; }

.page-home .tab-switch {
  display: inline-flex;
  gap: 4px;
  background: rgba(7, 18, 38, 0.55);
  border: 1px solid var(--home-line);
  border-radius: 40px;
  padding: 4px;
}

.page-home .tab-switch__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-home .tab-switch__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #9AB0C8;
  padding: 7px 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  user-select: none;
  white-space: nowrap;
}

.page-home .tab-switch__item:hover {
  color: #F5F9FC;
}

.page-home .tab-switch__radio:checked + .tab-switch__item {
  background: #39FF14;
  color: #071226;
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.22);
}

.page-home .matches-panel__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.page-home .matches-panel__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .match-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(7, 18, 38, 0.45);
  border: 1px solid var(--home-line);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s ease, background .2s ease;
}

.page-home .match-row:hover {
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(16, 42, 76, 0.5);
}

.page-home .match-row[hidden] { display: none; }

.page-home .match-row__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.page-home .match-row__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}

.page-home .match-row__id {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  color: rgba(154, 176, 200, 0.7);
}

.page-home .match-row__clubs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  flex-wrap: wrap;
}

.page-home .match-row__vs {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  font-weight: 400;
  color: #39FF14;
  padding: 2px 6px;
  border: 1px solid rgba(57, 255, 20, 0.3);
  border-radius: 4px;
  font-style: italic;
}

.page-home .match-row__time {
  font-size: 13px;
  color: #9AB0C8;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
}

.page-home .match-row__side {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .h2h {
  flex: 1;
  min-width: 200px;
}

.page-home .h2h summary {
  list-style: none;
  user-select: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #9AB0C8;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, border-color .2s ease;
}

.page-home .h2h summary::-webkit-details-marker {
  display: none;
}

.page-home .h2h summary::before {
  content: "+";
  font-size: 14px;
  color: #39FF14;
}

.page-home .h2h[open] summary::before {
  content: "−";
}

.page-home .h2h summary:hover {
  color: #F5F9FC;
  border-color: rgba(57, 255, 20, 0.35);
}

.page-home .h2h__hint {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 11px;
  color: #39FF14;
}

.page-home .h2h__chart {
  margin-top: 12px;
  padding: 10px 10px 12px;
  background: rgba(7, 18, 38, 0.6);
  border-radius: 8px;
  border-left: 2px solid #39FF14;
  animation: home-fade-in .28s ease-out both;
}

@keyframes home-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-home .h2h__svg {
  width: 100%;
  height: 56px;
  display: block;
  margin-bottom: 6px;
}

.page-home .h2h__track {
  fill: none;
  stroke: #39FF14;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .h2h__fill {
  fill: rgba(57, 255, 20, 0.08);
  stroke: none;
}

.page-home .h2h__chart circle {
  fill: #FFD700;
  stroke: #071226;
  stroke-width: 1.5;
}

.page-home .fav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 249, 252, 0.24);
  background: rgba(7, 18, 38, 0.5);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.page-home .fav-btn:hover {
  border-color: #39FF14;
  transform: translateY(-2px);
}

.page-home .fav-btn__star {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: #9AB0C8;
  stroke-width: 1.8;
  transition: fill .2s ease, stroke .2s ease;
}

.page-home .fav-btn:hover .fav-btn__star {
  stroke: #39FF14;
  fill: rgba(57, 255, 20, 0.3);
}

.page-home .matches-panel__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--home-line);
  flex-wrap: wrap;
}

.page-home .matches-panel__foot a {
  font-size: 13px;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
}

.page-home .matches-panel__foot a:hover {
  text-decoration: underline;
}

.page-home .report-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 92% 18%, rgba(57, 255, 20, 0.18), transparent 42%),
    linear-gradient(155deg, #102A4C 0%, #071226 100%);
}

.page-home .report-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.page-home .report-card__icon svg {
  width: 20px;
  height: 20px;
  fill: #39FF14;
}

.page-home .report-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9AB0C8;
  margin: 0 0 14px;
}

.page-home .report-card__notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.22);
  padding: 8px 12px;
  border-radius: 8px;
}

.page-home .report-card__notice svg {
  width: 14px;
  height: 14px;
  fill: #FFD700;
}

.page-home .report-card__link {
  align-self: flex-start;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
  padding-bottom: 2px;
}

.page-home .export-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-home .export-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .export-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9AB0C8;
  margin: 12px 0 16px;
}

.page-home .export-demo {
  border-radius: 8px;
  background: rgba(7, 18, 38, 0.5);
  border: 1px solid var(--home-line);
}

.page-home .export-demo__trigger {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #071226;
  background: #FFD700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
  transition: filter .2s ease;
}

.page-home .export-demo__trigger::-webkit-details-marker {
  display: none;
}

.page-home .export-demo__trigger:hover {
  filter: brightness(1.05);
}

.page-home .export-demo__trigger::before {
  content: "↓";
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 700;
}

.page-home .export-demo[open] .export-demo__trigger {
  background: #39FF14;
  border-radius: 6px 6px 0 0;
}

.page-home .export-demo__track {
  height: 6px;
  background: rgba(154, 176, 200, 0.2);
  overflow: hidden;
  margin: 0;
}

.page-home .export-demo[open] .export-demo__track {
  display: block;
}

.page-home .export-demo__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FFD700, #39FF14);
}

.page-home .export-demo[open] .export-demo__fill {
  animation: home-export 2.6s ease-out forwards;
}

@keyframes home-export {
  from { width: 0; }
  to { width: 100%; }
}

.page-home .export-demo__done {
  display: none;
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  color: #39FF14;
  font-weight: 600;
}

.page-home .export-demo[open] .export-demo__done {
  display: block;
  animation: home-fade-in .3s ease-out 2.4s both;
}

.page-home .export-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #9AB0C8;
  text-decoration: none;
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-home .export-card__link::after {
  content: "→";
  color: #39FF14;
}

.page-home .schedule-card {
  display: flex;
  flex-direction: column;
}

.page-home .schedule-card__head {
  margin-bottom: 18px;
}

.page-home .schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-home .schedule-timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--home-line);
  font-size: 14px;
  color: #F5F9FC;
}

.page-home .schedule-timeline__item:last-child {
  border-bottom: none;
}

.page-home .schedule-timeline__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9AB0C8;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(154, 176, 200, 0.18);
}

.page-home .schedule-timeline__item--neon::before {
  background: #39FF14;
  box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.2);
}

.page-home .schedule-timeline__time {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 15px;
  font-weight: 700;
  color: #39FF14;
  min-width: 76px;
}

.page-home .schedule-timeline__item--neon .schedule-timeline__time {
  color: #FFD700;
}

.page-home .panels-card {
  background:
    linear-gradient(130deg, rgba(57, 255, 20, 0.06), transparent 38%),
    linear-gradient(155deg, rgba(16, 42, 76, 0.86) 0%, rgba(7, 18, 38, 0.92) 100%);
}

.page-home .panels-card__metrics {
  display: flex;
  gap: 32px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}

.page-home .panels-card__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .meter {
  display: block;
  height: 8px;
  background: rgba(154, 176, 200, 0.16);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
  max-width: 480px;
}

.page-home .meter__fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #39FF14, #9CFF36);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.24);
}

.page-home .panels-card__note {
  font-size: 13px;
  color: #9AB0C8;
  margin: 10px 0 0;
}

.page-home .help-card__list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .help-card__list a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: #9AB0C8;
  text-decoration: none;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.page-home .help-card__list a:hover {
  color: #F5F9FC;
  background: rgba(57, 255, 20, 0.08);
  border-left-color: #39FF14;
}

.page-home .help-card__more {
  font-size: 13px;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
  padding-bottom: 2px;
}

.page-home .articles-section {
  padding: 56px 0;
  border-top: 1px solid var(--home-line);
}

.page-home .article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .article-entry {
  display: flex;
  flex-direction: column;
  background: rgba(16, 42, 76, 0.4);
  border: 1px solid var(--home-line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.page-home .article-entry:hover {
  transform: translateY(-2px);
  border-color: rgba(57, 255, 20, 0.3);
}

.page-home .article-entry__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #102A4C;
}

.page-home .article-entry__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .4s ease;
}

.page-home .article-entry:hover .article-entry__thumb img {
  transform: scale(1.03);
  opacity: 0.9;
}

.page-home .article-entry__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-home .article-entry__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-home .article-entry__tag {
  font-size: 12px;
  font-weight: 500;
  color: #9AB0C8;
  border: 1px solid var(--home-line);
  border-radius: 40px;
  padding: 3px 10px;
}

.page-home .article-entry__tag--data {
  color: #39FF14;
  border-color: rgba(57, 255, 20, 0.35);
}

.page-home .article-entry__tag--update {
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.32);
}

.page-home .article-entry__tag--local {
  color: #F5F9FC;
  border-color: rgba(245, 249, 252, 0.26);
}

.page-home .article-entry__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
}

.page-home .article-entry__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #9AB0C8;
  margin: 0;
}

.page-home .article-entry__link {
  font-size: 13px;
  font-weight: 600;
  color: #39FF14;
  text-decoration: none;
  margin-top: 4px;
}

.page-home .article-entry__link:hover {
  text-decoration: underline;
}

.page-home .gansu-section {
  position: relative;
  border-top: 1px solid rgba(57, 255, 20, 0.3);
  background: linear-gradient(115deg, rgba(57, 255, 20, 0.96) 0%, rgba(126, 222, 62, 0.92) 100%);
  color: #071226;
  padding: 64px 0;
  overflow: hidden;
  clip-path: polygon(0 4.5%, 100% 0, 100% 100%, 0 100%);
}

.page-home .gansu-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .gansu-section__media {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(7, 18, 38, 0.4);
  box-shadow: 0 24px 56px rgba(7, 18, 38, 0.35);
  transform: rotate(0.5deg);
  position: relative;
}

.page-home .gansu-section__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 18, 38, 0.22), transparent 46%);
  pointer-events: none;
  z-index: 1;
}

.page-home .gansu-section__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.page-home .gansu-section__body {
  max-width: 600px;
}

.page-home .gansu-section .section-kicker {
  color: #071226;
}

.page-home .gansu-section__title {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 4px 0 14px;
}

.page-home .gansu-section__desc {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(7, 18, 38, 0.76);
  margin: 0 0 20px;
}

.page-home .gansu-section__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .gansu-section__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
}

.page-home .gansu-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #071226;
  color: #39FF14;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 12px;
  font-weight: 700;
}

.page-home .gansu-section__slash {
  position: absolute;
  left: -6%;
  bottom: -18%;
  width: 42%;
  height: 120%;
  background: rgba(11, 29, 58, 0.94);
  clip-path: polygon(0 0, 100% 0, 36% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
  border-right: 3px solid rgba(255, 215, 0, 0.3);
}

@media (min-width: 640px) {
  .page-home .home-hero {
    padding: 72px 0 56px;
  }

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

  .page-home .article-entry:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
  }

  .page-home .schedule-timeline {
    flex-direction: row;
    gap: 20px;
  }

  .page-home .schedule-timeline__item {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-bottom: none;
    border-left: 1px solid var(--home-line);
    padding: 4px 0 4px 16px;
  }

  .page-home .schedule-timeline__item:last-child {
    border-bottom: none;
  }

  .page-home .schedule-timeline__item::before {
    position: absolute;
    left: -5px;
    top: 8px;
  }

  .page-home .schedule-timeline__time {
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 88px 0 72px;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 92%);
  }

  .page-home .home-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-hero__copy {
    flex: 1;
  }

  .page-home .home-hero__panel {
    flex: 0 0 520px;
    min-height: 440px;
    padding: 28px;
    transform: rotate(0.4deg);
  }

  .page-home .home-hero__panel:hover {
    transform: rotate(0deg) translateY(-2px);
    transition: transform .25s var(--ease, ease);
  }

  .page-home .home-hero__panel-bg {
    width: 340px;
    height: 340px;
    right: -110px;
    bottom: -40px;
  }

  .page-home .home-hero__shortcuts {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 20px;
    z-index: 2;
  }

  .page-home .home-hero__metrics {
    margin-bottom: 82px;
  }

  .page-home .bento-grid {
    gap: 20px;
  }

  .page-home .bento-cell--4 { grid-column: span 4; }
  .page-home .bento-cell--7 { grid-column: span 7; }
  .page-home .bento-cell--8 { grid-column: span 8; }

  .page-home .bento-cell--h320 { min-height: 320px; }
  .page-home .bento-cell--h480 { min-height: 480px; }

  .page-home .bento-section {
    padding: 80px 0 72px;
  }

  .page-home .match-row {
    flex-direction: row;
    align-items: center;
    padding: 18px 20px;
  }

  .page-home .match-row__side {
    min-width: 220px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
  }

  .page-home .h2h {
    min-width: 160px;
  }

  .page-home .h2h__chart {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    width: 260px;
    z-index: 20;
    box-shadow: 0 16px 40px rgba(7, 18, 38, 0.55);
  }

  .page-home .h2h summary {
    white-space: nowrap;
  }

  .page-home .matches-panel__body {
    gap: 12px;
  }

  .page-home .article-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .page-home .article-entry:last-child {
    grid-column: auto;
    max-width: none;
  }

  .page-home .article-entry__thumb {
    aspect-ratio: auto;
    height: 180px;
  }

  .page-home .gansu-section {
    padding: 88px 0 72px;
    clip-path: polygon(0 6.5%, 100% 0, 100% 100%, 0 100%);
  }

  .page-home .gansu-section__inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .page-home .gansu-section__media {
    flex: 0 1 480px;
  }

  .page-home .gansu-section__media img {
    width: 480px;
    height: 400px;
    max-height: none;
    object-fit: cover;
  }

  .page-home .gansu-section__body {
    flex: 1;
  }

  .page-home .gansu-section__slash {
    width: 30%;
    bottom: -24%;
  }
}
