:root {
  --bg-main: #041b2c;
  --bg-dark: #03111b;
  --bg-soft: #08253c;
  --surface: rgba(5, 17, 28, 0.62);
  --surface-strong: rgba(5, 17, 28, 0.82);
  --surface-light: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text-main: #f5fbff;
  --text-soft: rgba(245, 251, 255, 0.76);
  --text-dim: rgba(245, 251, 255, 0.5);
  --blue-main: #2046ff;
  --blue-bright: #3f63ff;
  --cyan-soft: #77d7ff;
  --red-main: #ff4b4b;
  --yellow-main: #ffd84b;
  --shadow-main: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.18);
  --radius-sm: 20px;
  --radius-md: 30px;
  --radius-lg: 42px;
  --container: 1180px;
  --header-height: 84px;
  --transition: 280ms ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(
      circle at 15% 12%,
      rgba(63, 99, 255, 0.18),
      transparent 22%
    ),
    radial-gradient(
      circle at 86% 12%,
      rgba(119, 215, 255, 0.12),
      transparent 18%
    ),
    linear-gradient(180deg, #041b2c 0%, #03111b 100%);
  overflow-x: hidden;
}
body.menu-open,
body.lightbox-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.site-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
}
.site-glow {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.site-glow--one {
  width: 320px;
  height: 320px;
  top: 80px;
  left: -60px;
  background: rgba(63, 99, 255, 0.22);
}
.site-glow--two {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 520px;
  background: rgba(119, 215, 255, 0.12);
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(2, 10, 18, 0.34);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(2, 10, 18, 0.82);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  height: 100%;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.3),
      transparent 30%
    ),
    linear-gradient(135deg, var(--blue-main), var(--blue-bright));
  box-shadow: 0 16px 34px rgba(32, 70, 255, 0.34);
  position: relative;
}
.logo__mark::before,
.logo__mark::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 999px;
}
.logo__mark::before {
  width: 6px;
  height: 24px;
  left: 19px;
  top: 8px;
  transform: rotate(35deg);
}
.logo__mark::after {
  width: 18px;
  height: 6px;
  left: 12px;
  top: 20px;
  transform: rotate(35deg);
}
.logo__text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-soft);
  transition: color var(--transition);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-soft), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}
.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}
.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(32, 70, 255, 0.28);
}
.burger {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 82px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__backdrop,
.hero__overlay {
  position: absolute;
  inset: 0;
}
.hero__backdrop {
  background:
    linear-gradient(
      90deg,
      rgba(2, 10, 18, 0.85) 0%,
      rgba(2, 10, 18, 0.48) 46%,
      rgba(2, 10, 18, 0.72) 100%
    ),
    url('photo1.jpeg') center/cover no-repeat;
  transform: scale(1.08);
}
.hero__overlay {
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(63, 99, 255, 0.22),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(4, 27, 44, 0.12), rgba(4, 27, 44, 0.72));
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-soft);
}
.hero__content h1,
.section-head h2,
.showcase__copy h2,
.tab-copy h3,
.cta-box__content h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.94;
}
.hero__content h1 {
  font-size: clamp(46px, 7vw, 86px);
  margin-bottom: 20px;
}
.hero__content h1 span {
  color: #8ecbff;
  text-shadow: 0 0 26px rgba(119, 215, 255, 0.18);
}
.hero__content p,
.section-head p,
.showcase__copy p,
.tab-copy p,
.player-preview__body p,
.cta-box__content p,
.feature-card p,
.footer p {
  color: var(--text-soft);
  line-height: 1.8;
}
.hero__content p {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 18px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
  box-shadow: 0 18px 40px rgba(32, 70, 255, 0.28);
}
.btn--primary:hover {
  transform: translateY(-3px);
}
.btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mini-stat {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.mini-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: #fff;
}
.mini-stat span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}
.device-stack {
  position: relative;
  min-height: 720px;
}
.device {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-main);
}
.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.device--main {
  width: 360px;
  height: 680px;
  right: 18px;
  top: 20px;
  transform: rotate(4deg);
}
.device--left {
  width: 216px;
  height: 390px;
  left: 0;
  top: 0;
  transform: rotate(-8deg);
}
.device--right {
  width: 228px;
  height: 400px;
  left: 56px;
  bottom: 16px;
  transform: rotate(8deg);
}
.ticker {
  padding: 18px 0 0;
}
.ticker__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 18px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.ticker__live {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--red-main);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.ticker__track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker__track span {
  position: relative;
  padding-right: 18px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker__track span::after {
  content: '•';
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.4);
}
.section {
  padding: 110px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 14px;
}
.section-head p {
  margin: 0;
  font-size: 18px;
}
.feature-grid,
.screens-grid {
  display: grid;
  gap: 20px;
}
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-card {
  min-height: 290px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}
.feature-card--accent {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 26%
    ),
    linear-gradient(145deg, rgba(32, 70, 255, 0.92), rgba(63, 99, 255, 0.86));
}
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 30px;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.feature-card p {
  margin: 0;
  font-size: 15px;
}
.showcase__grid,
.tab-layout,
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}
.showcase__copy h2,
.cta-box__content h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 14px;
}
.points-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.points-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  font-weight: 600;
}
.points-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-soft), var(--blue-bright));
  box-shadow: 0 0 0 4px rgba(119, 215, 255, 0.12);
}
.match-highlight {
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 22%
    ),
    linear-gradient(145deg, rgba(5, 17, 28, 0.78), rgba(4, 27, 44, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-main);
}
.match-highlight__top,
.match-highlight__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.match-highlight__top {
  margin-bottom: 26px;
  color: var(--text-soft);
  font-weight: 700;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tag--live {
  background: rgba(32, 70, 255, 0.18);
  color: #8ab9ff;
}
.match-highlight__middle {
  margin-bottom: 24px;
}
.team-box strong,
.team-vs {
  display: block;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.04em;
}
.team-box span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
}
.team-box--right {
  text-align: right;
}
.team-vs {
  color: #fff;
  font-weight: 900;
}
.match-highlight__arena {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.match-highlight__arena strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}
.match-highlight__arena span {
  color: var(--text-soft);
}
.showcase__mini-grid,
.two-col,
.screens-grid {
  display: grid;
  gap: 18px;
}
.showcase__mini-grid,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}
.shot,
.tab-shot,
.screen-card {
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}
.shot img,
.tab-shot img,
.screen-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot img,
.tab-shot img,
.screen-card img {
  aspect-ratio: 0.64;
}
.players-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.player-preview,
.tabs-box,
.cta-box {
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-main);
}
.player-preview {
  overflow: hidden;
}
.player-preview__image img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}
.player-preview__body {
  padding: 24px;
}
.player-preview__body h3,
.tab-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
}
.player-preview__body p,
.tab-copy p,
.cta-box__content p {
  margin: 0;
  font-size: 16px;
}
.tabs-box,
.cta-box {
  padding: 34px;
}
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.tab-btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-weight: 800;
  transition: all var(--transition);
}
.tab-btn.is-active {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-bright));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(32, 70, 255, 0.24);
}
.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}
.screen-card span {
  display: block;
  padding: 16px 16px 18px;
  font-weight: 800;
  color: #fff;
}
.screens-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer {
  padding: 30px 0 48px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__logo {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__links a {
  color: var(--text-soft);
  font-weight: 700;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  background: rgba(2, 10, 18, 0.56);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__panel {
  width: min(100%, 360px);
  height: 100%;
  padding: 28px 20px 24px;
  background: rgba(4, 17, 30, 0.98);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.mobile-menu__panel a {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(100%, 540px);
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
}
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal--delay {
  transition-delay: 0.12s;
}
.tilt-card {
  transform-style: preserve-3d;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-45%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1180px) {
  .feature-grid,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__grid,
  .showcase__grid,
  .tab-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
  }
  .device-stack {
    min-height: 620px;
  }
}
@media (max-width: 960px) {
  .nav,
  .header__btn {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .hero__stats,
  .feature-grid,
  .players-row,
  .screens-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .section {
    padding: 78px 0;
  }
  .container {
    width: min(100% - 24px, var(--container));
  }
  .hero__content h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .hero__content p,
  .section-head p {
    font-size: 16px;
  }
  .device-stack {
    min-height: 500px;
  }
  .device--main {
    width: 270px;
    height: 500px;
  }
  .device--left {
    width: 160px;
    height: 290px;
  }
  .device--right {
    width: 170px;
    height: 300px;
    left: 32px;
  }
  .showcase__mini-grid,
  .two-col,
  .tabs-nav,
  .hero__actions,
  .cta-box__actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .btn,
  .tab-btn {
    width: 100%;
  }
  .feature-card,
  .player-preview,
  .tabs-box,
  .cta-box,
  .match-highlight {
    border-radius: 24px;
  }
  .device-stack {
    min-height: 430px;
  }
  .device--main {
    width: 225px;
    height: 400px;
  }
  .device--left {
    width: 128px;
    height: 220px;
  }
  .device--right {
    width: 140px;
    height: 236px;
    left: 22px;
  }
  .match-highlight__middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-box--right {
    text-align: left;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
