.page-home {
  --home-neon-glow: rgba(0, 255, 136, 0.3);
  --home-orange-glow: rgba(255, 106, 0, 0.22);
  --home-card-tilt: rotate(-1.5deg);
  overflow-x: hidden;
}

.page-home .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-home .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  color: #A0A8B5;
  margin-bottom: 24px;
}

.page-home .breadcrumb-current {
  color: #00FF88;
}

.page-home .breadcrumb-mark {
  opacity: 0.5;
}

.page-home .hero-section {
  position: relative;
  background: linear-gradient(135deg, #0A0E1A 0%, #0F1A2F 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}

.page-home .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #E8ECF1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.page-home .hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #00FF88, #00FF88 45%, #FF6A00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.page-home .hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #A0A8B5;
  max-width: 560px;
  margin: 0 0 32px;
  border-left: 3px solid #00FF88;
  padding-left: 18px;
}

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

.page-home .btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.page-home .btn-primary {
  background: #00FF88;
  color: #0A0E1A;
  box-shadow: 0 0 24px var(--home-neon-glow);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--home-neon-glow);
}

.page-home .btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #E8ECF1;
}

.page-home .btn-outline:hover {
  border-color: #00FF88;
  color: #00FF88;
  transform: translateY(-2px);
}

.page-home .hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  background: #10182F;
}

.page-home .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.page-home .hero-shape {
  position: absolute;
  z-index: 2;
  border-radius: 4px;
}

.page-home .hero-shape-one {
  width: 140px;
  height: 140px;
  background: #00FF88;
  opacity: 0.92;
  top: -20px;
  right: 16%;
  transform: rotate(18deg);
  clip-path: polygon(0 0, 100% 28%, 78% 100%, 12% 82%);
}

.page-home .hero-shape-two {
  width: 90px;
  height: 90px;
  background: #FF6A00;
  opacity: 0.8;
  left: -14px;
  bottom: 28px;
  transform: rotate(-12deg);
  clip-path: polygon(50% 0, 100% 68%, 0 68%);
}

.page-home .hero-data {
  position: absolute;
  z-index: 3;
  background: rgba(16, 24, 47, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
}

.page-home .hero-data-score {
  right: 12%;
  top: 28px;
}

.page-home .hero-data-round {
  left: 14px;
  bottom: 34px;
}

.page-home .data-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #A0A8B5;
  margin-bottom: 2px;
}

.page-home .data-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00FF88;
}

.page-home .hero-lines {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

.page-home .section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.page-home .section-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #00FF88;
  margin-bottom: 10px;
}

.page-home .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #E8ECF1;
  margin: 0;
}

.page-home .section-intro {
  color: #A0A8B5;
  line-height: 1.7;
  font-size: 1rem;
  margin: 14px 0 0;
  max-width: 620px;
}

.page-home .section-more {
  color: #00FF88;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.page-home .section-more:hover {
  opacity: 0.7;
}

.page-home .reports-section {
  background: #0A0E1A;
}

.page-home .timeline-wrap {
  background: #10182F;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.page-home .timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
}

.page-home .timeline-track::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.5) 0%, #00FF88 55%, rgba(232, 236, 241, 0.4) 100%);
  transform: translateY(-50%);
}

.page-home .timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #A0A8B5;
  position: relative;
  z-index: 1;
}

.page-home .dot-home {
  background: #FF6A00;
}

.page-home .dot-away {
  background: #E8ECF1;
}

.page-home .dot-goal {
  background: #00FF88;
  box-shadow: 0 0 12px var(--home-neon-glow);
}

.page-home .dot-half {
  background: #FF6A00;
}

.page-home .dot-end {
  background: #00FF88;
}

.page-home .timeline-card {
  background: rgba(26, 36, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
}

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

.page-home .team-name {
  font-weight: 600;
  font-size: 1rem;
  color: #E8ECF1;
}

.page-home .score {
  font-size: 2rem;
  font-weight: 700;
  color: #00FF88;
}

.page-home .match-meta {
  color: #A0A8B5;
  font-size: 0.8rem;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .match-time-events {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.page-home .event-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 14, 26, 0.5);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: #E8ECF1;
}

.page-home .event-minute {
  color: #00FF88;
  font-weight: 600;
}

.page-home .event-text {
  color: #A0A8B5;
}

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

.page-home .report-card {
  background: linear-gradient(145deg, rgba(16, 24, 47, 0.9), rgba(16, 24, 47, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
  transform: var(--home-card-tilt);
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, border-color 0.3s ease;
}

.page-home .report-card:hover {
  transform: var(--home-card-tilt) translateY(-4px);
  border-color: rgba(0, 255, 136, 0.35);
}

.page-home .report-round {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #FF6A00;
  display: block;
  margin-bottom: 8px;
}

.page-home .report-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #E8ECF1;
  margin: 0 0 8px;
}

.page-home .report-summary {
  color: #A0A8B5;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.page-home .report-tag {
  display: inline-block;
  font-size: 0.7rem;
  color: #00FF88;
  background: rgba(0, 255, 136, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
}

.page-home .export-section {
  background: linear-gradient(180deg, #0A0E1A 0%, #0F1A2F 100%);
  position: relative;
  overflow: hidden;
}

.page-home .export-section::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15), transparent 70%);
  pointer-events: none;
}

.page-home .export-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.page-home .export-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.page-home .export-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .export-feature:last-child {
  border-bottom: none;
}

.page-home .feature-icon {
  font-size: 0.8rem;
  color: #00FF88;
  background: rgba(0, 255, 136, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-home .feature-text {
  color: #E8ECF1;
  font-size: 0.92rem;
}

.page-home .export-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: center;
}

.page-home .export-card {
  background: rgba(16, 24, 47, 0.68);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.page-home .export-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-home .export-format {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00FF88;
  grid-row: span 2;
  align-self: center;
}

.page-home .export-desc {
  color: #E8ECF1;
  font-size: 0.88rem;
  font-weight: 600;
}

.page-home .export-size {
  color: #A0A8B5;
  font-size: 0.72rem;
}

.page-home .export-note {
  background: rgba(255, 106, 0, 0.1);
  border-left: 3px solid #FF6A00;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .note-line {
  color: #E8ECF1;
  font-size: 0.86rem;
}

.page-home .league-section {
  background: linear-gradient(135deg, #0A0E1A 0%, #0F1A2F 100%);
}

.page-home .league-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 8px;
}

.page-home .league-table-wrap {
  background: rgba(16, 24, 47, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  overflow-x: auto;
}

.page-home .league-table-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.78rem;
  color: #A0A8B5;
}

.page-home .league-round-tag {
  background: rgba(255, 106, 0, 0.15);
  color: #FF6A00;
  padding: 4px 10px;
  border-radius: 16px;
}

.page-home .league-status {
  color: #00FF88;
}

.page-home .league-grid {
  min-width: 420px;
}

.page-home .league-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 8px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-home .league-row-head {
  background: rgba(0, 255, 136, 0.1);
  border-radius: 8px;
  margin-bottom: 4px;
}

.page-home .league-row-sub {
  background: rgba(255, 106, 0, 0.06);
}

.page-home .league-cell {
  color: #E8ECF1;
  font-size: 0.88rem;
}

.page-home .league-row-head .league-cell {
  color: #00FF88;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.page-home .league-cell:nth-child(2) {
  color: #E8ECF1;
}

.page-home .league-visual {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.page-home .league-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.06), rgba(255, 106, 0, 0.05));
  pointer-events: none;
}

.page-home .league-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-home .league-action {
  text-align: center;
  margin-top: 28px;
}

.page-home .updates-section {
  background: #0A0E1A;
}

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

.page-home .updates-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .update-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .update-tag {
  font-size: 0.72rem;
  color: #FF6A00;
  letter-spacing: 0.1em;
}

.page-home .update-text {
  color: #E8ECF1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.page-home .updates-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.page-home .phone-frame {
  position: relative;
  width: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45), 0 0 30px var(--home-neon-glow);
  background: #10182F;
}

.page-home .phone-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-home .phone-screen-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), transparent 40%);
  pointer-events: none;
}

.page-home .trust-section {
  padding-bottom: 80px;
  background: linear-gradient(160deg, #0A0E1A 0%, #0F1A2F 100%);
}

.page-home .trust-panel {
  background: rgba(16, 24, 47, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.page-home .trust-panel::before {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.page-home .trust-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.page-home .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-home .trust-item {
  background: rgba(26, 36, 56, 0.6);
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.page-home .trust-value {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #00FF88;
  letter-spacing: -0.02em;
}

.page-home .trust-name {
  display: block;
  color: #A0A8B5;
  font-size: 0.8rem;
  margin-top: 4px;
}

.page-home .trust-statement {
  position: relative;
  z-index: 1;
  color: #A0A8B5;
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 22px 0 0;
  padding: 14px 16px;
  background: rgba(10, 14, 26, 0.5);
  border-radius: 8px;
  font-weight: 500;
}

.page-home .trust-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.page-home .mono {
  font-family: "JetBrains Mono", "Fira Code", monospace;
}

.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.page-home [data-reveal="visible"] {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .page-home .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }

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

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

  .page-home .export-note {
    grid-column: span 2;
  }

  .page-home .updates-list {
    padding-right: 12px;
  }

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

@media (min-width: 960px) {
  .page-home .hero-section {
    padding: 72px 0 96px;
  }

  .page-home .hero-title {
    font-size: clamp(3.4rem, 8vw, 6rem);
  }

  .page-home .export-layout {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
  }

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

  .page-home .league-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 36px;
  }

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

  .page-home .trust-panel {
    padding: 40px 36px;
  }

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

@media (min-width: 1200px) {
  .page-home .hero-inner {
    gap: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-home .report-card,
  .page-home .report-card:hover,
  .page-home .export-card,
  .page-home .export-card:hover {
    transform: none;
    transition: border-color 0.2s ease;
  }

  .page-home .hero-shape {
    animation: none;
  }
}

.page-home {
  --reveal-delay: 0.3s;
}
