/* style.css */
:root {
  --black: #050505;
  --dark: #0c0c0d;
  --card: rgba(25, 25, 25, 0.72);
  --card2: rgba(32, 25, 22, 0.78);
  --orange: #ff650c;
  --orange2: #ff8b2b;
  --purple: #6a26ff;
  --pink: #d132ff;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.88);
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 101, 12, 0.34);
  --line2: rgba(255, 255, 255, 0.12);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  --glow: 0 0 38px rgba(255, 101, 12, 0.42);
  --radius: 34px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, sans-serif;
  color: var(--white);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(106, 38, 255, 0.35),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 12%,
      rgba(255, 101, 12, 0.22),
      transparent 26%
    ),
    linear-gradient(180deg, #060006 0%, #0a0507 45%, #030303 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
}

.orb {
  position: fixed;
  z-index: -4;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.orb-one {
  width: 480px;
  height: 480px;
  left: -160px;
  top: 160px;
  background: rgba(106, 38, 255, 0.4);
}

.orb-two {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: 12%;
  background: rgba(255, 101, 12, 0.28);
}

.cursor-light {
  position: fixed;
  z-index: 20;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 101, 12, 0.18),
    transparent 62%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transition: 0.35s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #111;
  background: linear-gradient(135deg, var(--orange), #ffb36a);
  box-shadow: var(--glow);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 101, 12, 0.12);
}

.header-btn,
.back-btn {
  padding: 13px 18px;
  border-radius: 999px;
  color: #120905;
  background: linear-gradient(135deg, var(--orange), #ffb36a);
  font-weight: 900;
  box-shadow: var(--glow);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
}

.menu-toggle i {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 5% 90px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background:
    linear-gradient(transparent 95%, rgba(255, 101, 12, 0.22) 96%),
    linear-gradient(90deg, transparent 95%, rgba(255, 101, 12, 0.18) 96%);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle, #000 0%, transparent 72%);
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 101, 12, 0.08);
  color: var(--orange2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 24px var(--orange);
}

.hero h1,
.section-head h2,
.split-copy h2,
.cta-box h2 {
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero-text,
.split-copy p {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  min-height: 60px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
  transition: 0.28s ease;
}

.btn-main {
  color: #111;
  background: linear-gradient(135deg, var(--orange), #ffb36a);
  box-shadow: var(--glow);
}

.btn-ghost {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-4px);
}

.hero-points {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-points div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line2);
}

.hero-points strong {
  display: block;
  color: var(--orange);
  font-size: 26px;
}

.hero-points span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero-device {
  position: relative;
  min-height: 690px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 44px;
  border: 1px solid rgba(255, 101, 12, 0.28);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: var(--shadow);
}

.phone-main {
  width: 310px;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  animation: floating 5s ease-in-out infinite;
}

.phone-left,
.phone-right {
  width: 220px;
  opacity: 0.72;
}

.phone-left {
  left: 0;
  top: 15%;
  transform: rotate(-9deg);
}

.phone-right {
  right: 2%;
  bottom: 13%;
  transform: rotate(9deg);
}

.cyber-chip {
  position: absolute;
  z-index: 8;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--glow);
  font-weight: 900;
}

.chip-live {
  top: 16%;
  right: 8%;
  color: var(--orange);
}

.chip-score {
  left: 10%;
  bottom: 24%;
}

.chip-meta {
  right: 12%;
  bottom: 7%;
}

.ticker {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 101, 12, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

.ticker-track span {
  padding: 0 34px;
  color: var(--orange2);
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 13px;
}

.section {
  padding: 120px 5%;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head p {
  color: var(--orange);
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.match-grid,
.players-grid,
.analytics-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  gap: 24px;
}

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

.match-card,
.player-card,
.analytics-card,
.cta-box,
.privacy-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 0%),
      rgba(255, 101, 12, 0.18),
      transparent 34%
    ),
    var(--card);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.match-card {
  padding: 26px;
  border-radius: var(--radius);
  transition: 0.3s ease;
}

.match-card:hover,
.player-card:hover,
.analytics-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 101, 12, 0.65);
}

.match-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.live-dot {
  color: #ff2020;
}

.teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 30px 0 22px;
}

.teams-row div {
  text-align: center;
}

.teams-row img {
  width: 64px;
  height: 46px;
  object-fit: cover;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.teams-row strong {
  font-size: 38px;
  letter-spacing: -0.05em;
}

.probability {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.probability i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.match-card small {
  display: block;
  margin-top: 14px;
  color: var(--orange2);
}

.players-grid {
  grid-template-columns: repeat(4, 1fr);
}

.player-card {
  padding: 26px;
  min-height: 310px;
  border-radius: var(--radius);
  text-align: center;
  transition: 0.3s ease;
}

.player-card img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 22px;
  border: 3px solid var(--orange);
  box-shadow: var(--glow);
}

.player-card h3 {
  font-size: 26px;
}

.player-card p {
  color: var(--orange);
  margin: 8px 0 18px;
  font-weight: 800;
}

.player-card span {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.split {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.split-media {
  overflow: hidden;
  border-radius: 48px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-media img {
  height: 720px;
  object-fit: cover;
}

.stats-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats-row div {
  padding: 26px 18px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line2);
}

.stats-row strong {
  display: block;
  color: var(--orange);
  font-size: 36px;
}

.stats-row span {
  color: var(--muted);
}

.analytics-grid {
  grid-template-columns: repeat(2, 1fr);
}

.analytics-card {
  padding: 34px;
  border-radius: var(--radius);
  min-height: 360px;
}

.analytics-card.wide {
  grid-column: span 2;
}

.analytics-card h3 {
  font-size: 28px;
  margin-bottom: 28px;
}

.donut {
  width: 220px;
  height: 220px;
  margin: 35px auto 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(
    var(--orange) 0 68%,
    rgba(255, 255, 255, 0.09) 68% 100%
  );
  position: relative;
  box-shadow: var(--glow);
}

.donut::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: #111;
}

.donut span {
  position: relative;
  z-index: 2;
  font-size: 44px;
  font-weight: 950;
}

.bars {
  display: grid;
  gap: 26px;
}

.bars div {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  align-items: center;
  gap: 16px;
}

.bars span,
.bars em {
  font-style: normal;
  font-weight: 850;
}

.bars em {
  color: var(--orange2);
  text-align: right;
}

.bars i {
  height: 13px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.line-chart {
  width: 100%;
  height: 310px;
}

.screen-wall {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: start;
}

.screen-wall img {
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.screen-wall img:nth-child(even) {
  margin-top: 70px;
}

.screen-wall img:hover {
  transform: translateY(-10px) scale(1.02);
}

.cta-box {
  max-width: 1120px;
  margin: auto;
  padding: 76px;
  text-align: center;
  border-radius: 52px;
}

.cta-box p {
  color: var(--orange);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.cta-box .btn {
  margin-top: 34px;
}

.footer {
  padding: 76px 5% 42px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer p {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a:not(.logo) {
  display: block;
  margin: 12px 0;
  color: var(--muted);
}

.privacy-page {
  min-height: 100vh;
  padding: 150px 5% 90px;
}

.privacy-card {
  max-width: 980px;
  margin: auto;
  padding: 56px;
  border-radius: 44px;
}

.privacy-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.privacy-card h1 {
  font-size: clamp(42px, 7vw, 84px);
  letter-spacing: -0.07em;
}

.privacy-card p {
  white-space: pre-line;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floating {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-18px);
  }
}

@media (max-width: 1120px) {
  .site-nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav.open {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 18px;
    display: grid;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .hero,
  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .match-grid,
  .players-grid,
  .analytics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-points,
  .match-grid,
  .players-grid,
  .analytics-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .analytics-card.wide {
    grid-column: span 1;
  }

  .hero-device {
    min-height: 540px;
  }

  .phone-main {
    width: 245px;
  }

  .phone-left,
  .phone-right {
    width: 170px;
    opacity: 0.2;
  }

  .cyber-chip {
    display: none;
  }

  .section {
    padding: 82px 5%;
  }

  .screen-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-wall img:nth-child(even) {
    margin-top: 32px;
  }

  .privacy-top {
    flex-direction: column;
  }

  .privacy-card,
  .cta-box {
    padding: 32px;
  }
}
