.page-home {
  --home-green-glow: rgba(57, 255, 20, 0.18);
  --home-orange-glow: rgba(255, 107, 0, 0.24);
  --home-slant-angle: 12deg;
  --home-panel-blur: rgba(43, 45, 49, 0.6);
  background: var(--deep-gray);
  color: var(--white);
  overflow-x: hidden;
}

.page-home .content-shell {
  position: relative;
  z-index: 2;
}

.page-home .home-hero {
  position: relative;
  min-height: min(100vh, 980px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 82% 12%, var(--home-orange-glow), transparent 36%),
              radial-gradient(ellipse at 30% 92%, var(--home-green-glow), transparent 42%),
              var(--deep-gray);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--home-slant-angle)), 0 100%);
  padding-top: calc(var(--header-h) + var(--header-top) + 46px);
  padding-bottom: calc(var(--header-h) + 70px);
}

.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .hero-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--deep-gray) 0%, rgba(26, 26, 26, 0.78) 48%, rgba(26, 26, 26, 0.3) 100%);
}

.page-home .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: contrast(1.14) saturate(1.20) brightness(0.72);
}

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--deep-gray), transparent 45%);
  pointer-events: none;
}

.page-home .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

.page-home .hero-brand-col {
  position: relative;
  z-index: 3;
}

.page-home .hero-kicker {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fluorescent-green);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.page-home .hero-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--orange-start);
  align-self: center;
  display: inline-block;
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-size: clamp(64px, 8.4vw, 148px);
  line-height: 0.96;
  letter-spacing: 1px;
  margin: 0 0 32px;
  text-transform: uppercase;
  text-align: left;
  word-break: break-word;
}

.page-home .hero-title-underline {
  display: block;
  background: linear-gradient(120deg, var(--white) 5%, var(--orange-start) 55%, var(--orange-end) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-bottom: 2px;
}

.page-home .hero-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--light-gray);
  max-width: 580px;
  margin: 0 0 34px;
}

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

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 650px;
}

.page-home .hero-metric {
  border-left: 2px solid var(--divider-gray);
  padding-left: 12px;
}

.page-home .hero-metric .data-number {
  font-family: var(--font-data);
  font-size: clamp(21px, 2.6vw, 34px);
  color: var(--fluorescent-green);
  display: block;
  line-height: 1.2;
}

.page-home .hero-metric-unit {
  font-size: 0.55em;
  color: var(--light-gray);
  margin-left: 2px;
}

.page-home .hero-metric-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(176, 176, 176, 0.72);
  margin-top: 4px;
  display: block;
  letter-spacing: 0.5px;
}

.page-home .hero-quick-col {
  position: relative;
  z-index: 3;
}

.page-home .quick-panel {
  background: rgba(43, 45, 49, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px;
  box-shadow: var(--shadow-2);
  position: relative;
}

.page-home .quick-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 72px;
  right: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-start), var(--fluorescent-green));
  border-radius: var(--radius-pill);
}

.page-home .quick-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .quick-panel-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--fluorescent-green);
  animation: homePulse 2s infinite ease-out;
}

@keyframes homePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(57, 255, 20, 0); }
}

.page-home .quick-panel-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}

.page-home .quick-panel-badge {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white);
  background: var(--deep-gray);
  border: 1px solid var(--divider-gray);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.page-home .quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-home .quick-card {
  position: relative;
  display: block;
  padding: 18px 14px 14px;
  border-radius: var(--radius-md);
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  text-decoration: none;
  transition: box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  min-height: 118px;
  overflow: hidden;
}

.page-home .quick-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, transparent 48%, rgba(255, 107, 0, 0.22) 50%);
  transition: transform var(--dur-fast) var(--ease-out);
  border-radius: var(--radius-sm);
}

.page-home .quick-card:hover,
.page-home .quick-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--fluorescent-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.48), inset 0 0 22px var(--home-green-glow);
}

.page-home .quick-card:nth-child(odd):hover::after { transform: scale(1.2); }
.page-home .quick-card:nth-child(even)::after { background: linear-gradient(135deg, transparent 48%, rgba(57, 255, 20, 0.18) 50%); }
.page-home .quick-card:nth-child(even):hover::after { transform: scale(1.2); }

.page-home .quick-card-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-gray);
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  border-radius: 8px;
  margin-bottom: 12px;
}

.page-home .quick-card:nth-child(even) .quick-card-icon {
  background: linear-gradient(135deg, var(--fluorescent-green), #6CFF3D);
}

.page-home .quick-card-name {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.page-home .quick-card-sub {
  display: block;
  font-size: 12px;
  color: var(--light-gray);
  margin-bottom: 10px;
}

.page-home .quick-card-data {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--fluorescent-green);
  background: rgba(57, 255, 20, 0.08);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
}

.page-home .quick-card:nth-child(odd) .quick-card-data { color: var(--orange-end); background: rgba(255, 107, 0, 0.1); }

.page-home .hero-slant {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--home-slant-angle);
  background: var(--deep-gray);
  z-index: 4;
}

.page-home .home-ticker {
  background: var(--deep-gray);
  border-top: 1px solid var(--divider-gray);
  border-bottom: 1px solid var(--divider-gray);
  padding: 12px 0;
  position: relative;
  z-index: 5;
}

.page-home .ticker-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.page-home .ticker-label {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--orange-start);
  white-space: nowrap;
  letter-spacing: 1.5px;
  background: var(--slate-gray);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--divider-gray);
}

.page-home .ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  animation: homeTickerScroll 22s linear infinite;
}

.page-home .ticker-track::-webkit-scrollbar { display: none; }

@keyframes homeTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 16px)); }
}

.page-home .ticker-item {
  font-family: var(--font-data);
  font-size: 13px;
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .ticker-status { width: 6px; height: 6px; min-width: 6px; border-radius: 50%; }
.page-home .ticker-dot { background: var(--fluorescent-green); }

.page-home .ticker-score {
  color: var(--white);
  font-weight: 600;
}

.page-home .section {
  padding: 72px 0;
  position: relative;
}

.page-home .section-kicker {
  font-family: var(--font-data);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fluorescent-green);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .section-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange-start);
  display: inline-block;
}

.page-home .section-title {
  font-family: var(--font-headline);
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: var(--white);
}

.page-home .section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--light-gray);
  max-width: 780px;
}

.page-home .home-live { background: var(--deep-gray); }
.page-home .home-live::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fluorescent-green), transparent);
  opacity: 0.3;
}

.page-home .live-data-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 44px;
}

.page-home .live-data-visual .img-frame {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider-gray);
  box-shadow: var(--shadow-1);
}

.page-home .live-status-panel { align-self: start; }

.page-home .live-match-list {
  border-bottom: 1px solid var(--divider-gray);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.page-home .live-match {
  display: grid;
  grid-template-columns: 44px 1fr auto 1fr 56px;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.4);
}

.page-home .live-match:last-child { border-bottom: 0; }

.page-home .live-match-league {
  font-family: var(--font-data);
  font-size: 11px;
  color: var(--light-gray);
  background: var(--deep-gray);
  border: 1px solid var(--divider-gray);
  padding: 4px 6px;
  border-radius: 5px;
  text-align: center;
}

.page-home .live-match-team {
  font-family: var(--font-body);
  font-size: 15px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-home .live-match-score {
  font-family: var(--font-data);
  font-size: 22px;
  color: var(--fluorescent-green);
  text-align: center;
  font-weight: 700;
}

.page-home .live-match-status {
  font-family: var(--font-data);
  font-size: 12px;
  color: var(--orange-end);
  text-align: right;
}

.page-home .live-card-events .live-events-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.page-home .live-event-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--light-gray);
}

.page-home .btn-more { margin-top: 18px; }

.page-home .home-expert {
  background: var(--slate-gray);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  padding-top: 96px;
  padding-bottom: 88px;
}

.page-home .expert-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-home .expert-article-card {
  background: var(--deep-gray);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange-start);
  margin-top: 20px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.page-home .expert-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.page-home .expert-article-card .card-title {
  font-family: var(--font-body);
  font-size: 22px;
  margin: 12px 0 8px;
  color: var(--white);
}

.page-home .expert-article-card .card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-gray);
}

.page-home .expert-article-card .card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--fluorescent-green);
  text-decoration: none;
  font-family: var(--font-data);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.page-home .expert-article-card .card-link:hover { color: var(--orange-start); }

.page-home .expert-visual .img-frame {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider-gray);
}

.page-home .home-subscribe {
  background: linear-gradient(180deg, var(--deep-gray) 0%, var(--slate-gray) 100%);
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 100%);
  padding-top: 94px;
}

.page-home .subscribe-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.page-home .subscribe-copy .section-title {
  max-width: 500px;
}

.page-home .subscribe-list {
  list-style: none;
  margin: 32px 0 34px;
  padding: 0;
}

.page-home .subscribe-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider-gray);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
}

.page-home .subscribe-list-item:last-child { border-bottom: 0; }

.page-home .subscribe-list-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  font-family: var(--font-data);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: var(--deep-gray);
  border-radius: 7px;
  font-weight: 700;
}

.page-home .subscribe-list-text {
  color: var(--light-gray);
  line-height: 1.6;
}

.page-home .subscribe-visual {
  display: flex;
  justify-content: center;
}

.page-home .phone-frame {
  position: relative;
  width: min(360px, 80%);
  border-radius: 36px;
  overflow: hidden;
  background: var(--slate-gray);
  border: 1px solid var(--divider-gray);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.page-home .phone-frame .img-frame {
  width: 100%;
  aspect-ratio: 1 / 2;
  object-fit: cover;
  display: block;
}

.page-home .phone-frame-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(57, 255, 20, 0.09) 50%, transparent 70%);
  animation: homeScan 6s linear infinite;
}

@keyframes homeScan {
  0% { transform: translateX(-25%); }
  50% { transform: translateX(25%); }
  100% { transform: translateX(-25%); }
}

.page-home .phone-frame-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(26, 26, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--divider-gray);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-home .phone-frame-meta .data-number {
  font-size: 26px;
  color: var(--fluorescent-green);
}

.page-home .phone-frame-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
}

.page-home .home-trust { background: var(--deep-gray); padding-top: 96px; }

.page-home .trust-inner {
  max-width: 980px;
}

.page-home .trust-title {
  max-width: 740px;
}

.page-home .trust-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--light-gray);
  max-width: 840px;
}

.page-home .trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--divider-gray);
}

.page-home .trust-metric-item {
  padding: 20px;
  background: var(--slate-gray);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.page-home .trust-metric-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--fluorescent-green), var(--orange-start));
}

.page-home .trust-num {
  display: block;
  font-size: 34px;
  color: var(--white);
  margin-bottom: 4px;
}

.page-home .trust-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--light-gray);
}

.page-home .trust-achievement-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.page-home .trust-achievement-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light-gray);
  line-height: 1.6;
}

.page-home .trust-achievement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fluorescent-green);
}

.page-home .trust-achievement-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 13px;
  width: 2px;
  height: 18px;
  background: rgba(57, 255, 20, 0.25);
}

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 72px;
  }

  .page-home .hero-title {
    font-size: clamp(76px, 7.8vw, 138px);
  }

  .page-home .live-data-layout {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: stretch;
  }

  .page-home .live-data-visual .img-frame {
    min-height: 420px;
  }

  .page-home .expert-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 52px;
    align-items: center;
  }

  .page-home .subscribe-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
  }

  .page-home .trust-metrics {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home .ticker-track,
  .page-home .phone-frame-scanline,
  .page-home .quick-panel-dot {
    animation: none;
  }

  .page-home .quick-card:hover,
  .page-home .quick-card:focus-visible {
    transform: none;
  }
}
