/* style.css */
:root {
  --black: #030303;
  --black-soft: #090909;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 214, 10, 0.25);
  --gold: #ffd60a;
  --gold-deep: #f4a300;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-dark: rgba(255, 255, 255, 0.42);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 214, 10, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 214, 10, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #050505 0%, #0a0a0a 45%, #020202 100%);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.14),
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  translate: -50% -50%;
  opacity: 0.65;
  filter: blur(12px);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 34px));
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.32);
  transition: 0.35s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(5, 5, 5, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
  box-shadow: 0 0 28px rgba(255, 214, 10, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--gold);
}

.download-btn,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

.download-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--gold), #ffb300);
  color: #090909;
  box-shadow: 0 16px 42px rgba(255, 214, 10, 0.26);
}

.download-btn {
  padding: 0 22px;
}

.download-btn:hover,
.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(255, 214, 10, 0.38);
}

.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 10px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
}

.mobile-menu.active {
  display: grid;
}

.mobile-menu a {
  display: block;
  margin: 22px 0;
  font-size: 34px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.58),
      rgba(0, 0, 0, 0.86)
    ),
    url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?auto=format&fit=crop&w=1800&q=80')
      center/cover;
  opacity: 0.42;
  transform: scale(1.04);
}

.hero-bg-ball {
  position: absolute;
  right: -190px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 32% 28%,
      rgba(255, 255, 255, 0.18),
      transparent 14%
    ),
    radial-gradient(circle, rgba(255, 214, 10, 0.12), rgba(0, 0, 0, 0) 68%);
  border: 1px solid rgba(255, 214, 10, 0.16);
  animation: spinSlow 18s linear infinite;
}

.hero-line {
  position: absolute;
  height: 1px;
  width: 46vw;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 214, 10, 0.4),
    transparent
  );
  transform: rotate(-18deg);
}

.hero-line.one {
  top: 24%;
  left: -12%;
}

.hero-line.two {
  right: -10%;
  bottom: 25%;
}

.hero-content,
.phone-stage,
.section,
.screens-section,
.cta-section,
.footer {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.hero-text,
.section-copy p,
.cta-card p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.primary-btn {
  padding: 0 34px;
}

.ghost-btn {
  padding: 0 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.ghost-btn:hover {
  color: var(--gold);
  border-color: rgba(255, 214, 10, 0.45);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 580px;
  gap: 12px;
  margin-top: 44px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 24px;
  color: var(--gold);
}

.hero-stats span {
  color: var(--muted-dark);
  margin-top: 4px;
}

.phone-stage {
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.phone-card {
  width: min(360px, 80vw);
  height: 640px;
  border-radius: 46px;
  padding: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.03)
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 214, 10, 0.14),
      transparent 38%
    ),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.72);
  transform: rotateY(-10deg) rotateX(5deg);
  position: relative;
  overflow: hidden;
}

.phone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.24;
}

.phone-top {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.8)),
    url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=900&q=80')
      center/cover;
  border: 1px solid rgba(255, 214, 10, 0.22);
}

.phone-title {
  position: relative;
  margin-top: 44px;
  font-size: 34px;
  font-weight: 950;
  color: var(--gold);
  letter-spacing: -0.05em;
}

.phone-subtitle {
  position: relative;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.phone-cta {
  position: relative;
  margin-top: 42px;
  padding: 20px;
  border-radius: 18px;
  background: var(--gold);
  color: #050505;
  text-align: center;
  font-weight: 950;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(16, 16, 16, 0.78);
  border: 1px solid rgba(255, 214, 10, 0.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: floaty 5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: var(--gold);
  font-size: 30px;
  font-weight: 950;
}

.floating-card small {
  color: var(--muted);
}

.card-a {
  left: 2%;
  top: 30%;
}

.card-b {
  right: 4%;
  bottom: 22%;
  animation-delay: -2s;
}

.marquee-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  padding: 22px 0;
  animation: marquee 22s linear infinite;
}

.marquee span {
  color: rgba(255, 255, 255, 0.28);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section {
  padding: 130px max(24px, calc((100vw - 1180px) / 2));
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.match-stack {
  display: grid;
  gap: 18px;
}

.match-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 214, 10, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.match-card.premium {
  border-color: rgba(255, 214, 10, 0.45);
  box-shadow: 0 24px 90px rgba(255, 214, 10, 0.08);
}

.match-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 214, 10, 0.09),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.7s ease;
}

.match-card:hover::before {
  transform: translateX(100%);
}

.team {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  font-weight: 850;
}

.badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 950;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.gold {
  background: linear-gradient(135deg, #b8860b, #ffd60a);
  color: #111;
}
.dark {
  background: linear-gradient(135deg, #343434, #111);
}
.red {
  background: linear-gradient(135deg, #ba181b, #ff6b6b);
}
.blue {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}
.navy {
  background: linear-gradient(135deg, #172554, #2563eb);
}
.green {
  background: linear-gradient(135deg, #14532d, #22c55e);
}

.score {
  color: var(--gold);
  font-size: 48px;
  font-weight: 950;
}

.star {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--gold);
  font-size: 24px;
}

.screens-section {
  padding: 130px 0;
  overflow: hidden;
}

.section-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.carousel {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 22px;
}

.screen-card {
  min-height: 620px;
  padding: 24px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: 0.45s ease;
}

.screen-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 214, 10, 0.38);
}

.mock-screen {
  min-height: 430px;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 214, 10, 0.12),
      transparent 45%
    ),
    linear-gradient(180deg, #0b0b0b, #030303);
  border: 1px solid rgba(255, 214, 10, 0.18);
  overflow: hidden;
}

.month-row {
  display: flex;
  gap: 20px;
  color: var(--muted-dark);
  margin-bottom: 20px;
}

.month-row strong {
  color: var(--gold);
}

.date-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.date-row div {
  flex: 1;
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
}

.date-row .hot {
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #111;
}

.mini-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 14px;
  margin-top: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 214, 10, 0.18);
}

.mini-match strong {
  color: var(--gold);
  font-size: 30px;
}

.table-screen h4 {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 22px;
}

.table-line {
  display: grid;
  grid-template-columns: 30px 1fr 50px;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-line strong,
.table-line b {
  color: var(--gold);
}

.tab-line {
  display: flex;
  justify-content: space-around;
  color: var(--gold);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 214, 10, 0.25);
}

.player-row {
  display: grid;
  grid-template-columns: 52px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-row div {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 214, 10, 0.6),
    rgba(255, 255, 255, 0.15)
  );
}

.player-row b {
  color: var(--gold);
}

.screen-card h3 {
  margin-top: 24px;
}

.screen-card p {
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 42px;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(255, 214, 10, 0.25);
  display: none;
}

.prev {
  left: -22px;
}
.next {
  right: -22px;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.carousel-dots button.active {
  width: 34px;
  background: var(--gold);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 214, 10, 0.42);
}

.feature-card span {
  color: var(--gold);
  font-weight: 950;
}

.feature-card h3 {
  margin-top: 62px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}

.cta-section {
  position: relative;
  padding: 120px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 10, 0.22),
    transparent 68%
  );
  animation: pulseOrb 4s ease-in-out infinite;
}

.cta-card {
  width: min(900px, 100%);
  padding: 70px;
  border-radius: 42px;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.85)),
    url('https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1400&q=80')
      center/cover;
  border: 1px solid rgba(255, 214, 10, 0.28);
  box-shadow: var(--shadow);
}

.cta-card p {
  margin-left: auto;
  margin-right: auto;
}

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

.footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 60px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.footer strong {
  color: var(--white);
  font-size: 22px;
}

.footer p {
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.8s ease;
}

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

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .nav,
  .download-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 40px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-card {
    height: 560px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

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

  .carousel-track {
    display: flex;
    overflow: hidden;
  }

  .screen-card {
    min-width: 100%;
    display: none;
  }

  .screen-card.active {
    display: block;
  }

  .carousel-btn,
  .carousel-dots {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 22px);
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-text,
  .section-copy p,
  .cta-card p {
    font-size: 17px;
  }

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

  .floating-card {
    display: none;
  }

  .section {
    padding: 90px 20px;
  }

  .match-card {
    grid-template-columns: 1fr;
  }

  .score {
    text-align: center;
  }

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

  .cta-card {
    padding: 48px 24px;
  }

  .footer {
    flex-direction: column;
  }
}
