* {
  box-sizing: border-box;
}

:root {
  --site-header-height: 100px;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 244, 255, 0.10) 0%, transparent 32%),
    radial-gradient(circle at 80% 8%, rgba(188, 40, 23, 0.10) 0%, transparent 30%),
    linear-gradient(180deg, #040814 0%, #050C28 40%, #050814 100%);
  color: var(--nx-white);
  font-family: var(--nx-font-body);
  -webkit-tap-highlight-color: transparent;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 7%, transparent 7% 20%, rgba(255, 255, 255, 0.02) 20% 28%, transparent 28% 100%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 28%);
  opacity: 0.55;
}

.no-pointer {
  cursor: default!important;
}

#root {
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 3px;
}

::selection {
  background: var(--nx-cyan);
  color: #050C28;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.25);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes beam {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.2;
  }
}

.pulse-dot {
  animation: pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}

.marquee {
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.hero__beam,
.hero__beam--secondary {
  animation: beam 4s ease-in-out infinite;
}

.hero__beam--secondary {
  animation-duration: 5s;
  animation-delay: -2s;
}

:where(.modes, .season-pass, .creator-studios, .stats-band, .site-footer) {
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}

:where(.modes, .creator-studios, .stats-band, .site-footer) {
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}

.season-pass {
  content-visibility: auto;
  contain-intrinsic-size: auto 1500px;
}

:where(.modes__inner, .season-pass__content, .creator-studios__inner, .stats-band__inner, .site-footer__inner) {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.chunky-cta {
  --cta-font-size: 20px;
  --cta-padding: 16px 34px 18px;
  --cta-radius: 16px;
  --cta-drop-size: 7px;
  --cta-fg: #fff;
  --cta-bg: rgba(255, 255, 255, 0.08);
  --cta-drop: rgba(0, 0, 0, 0.5);
  --cta-shadow: none;
  --cta-border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: var(--cta-border);
  border-radius: var(--cta-radius);
  padding: var(--cta-padding);
  font-family: var(--nx-font-display);
  font-size: var(--cta-font-size);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cta-fg);
  background: var(--cta-bg);
  box-shadow: 0 var(--cta-drop-size) 0 0 var(--cta-drop), inset 0 2px 0 rgba(255, 255, 255, 0.5);
  text-shadow: var(--cta-shadow);
  transition: transform 80ms ease-out, box-shadow 80ms ease-out, filter 80ms ease-out;
  min-width: 0;
}

.auto-fit-text {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
}

.chunky-cta__label {
  text-align: center;
}

.season-pass__title-line {
  text-align: left;
}

.chunky-cta:hover {
  transform: translateY(-2px);
}

.chunky-cta:active {
  transform: translateY(3px);
}

.chunky-cta--md {
  --cta-font-size: 16px;
  --cta-padding: 12px 24px 14px;
  --cta-radius: 14px;
  --cta-drop-size: 5px;
}

.chunky-cta--lg {
  --cta-font-size: 20px;
  --cta-padding: 16px 34px 18px;
  --cta-radius: 16px;
  --cta-drop-size: 7px;
}

.chunky-cta--xl {
  --cta-font-size: 28px;
  --cta-padding: 20px 48px 22px;
  --cta-radius: 20px;
  --cta-drop-size: 9px;
}

.chunky-cta--gold {
  --cta-fg: #4A2E00;
  --cta-bg: linear-gradient(180deg, #FFD95A 0%, #FBC52F 55%, #E39A0B 100%);
  --cta-drop: #A86F07;
  --cta-shadow: 0 2px 0 rgba(255, 230, 150, 0.7);
}

.chunky-cta--cyan {
  --cta-fg: #0E1E4F;
  --cta-bg: linear-gradient(180deg, #7EFBFF 0%, #00F4FF 100%);
  --cta-drop: #067A82;
  --cta-shadow: 0 2px 0 rgba(255, 255, 255, 0.45);
}

.chunky-cta--red {
  --cta-fg: #FFFFFF;
  --cta-bg: linear-gradient(180deg, #E84732 0%, #BC2817 100%);
  --cta-drop: #7A1A0E;
  --cta-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.chunky-cta--ghost {
  --cta-fg: #FFFFFF;
  --cta-bg: rgba(255, 255, 255, 0.08);
  --cta-drop: rgba(0, 0, 0, 0.5);
  --cta-shadow: none;
  --cta-border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.chunky-cta--surface {
  --cta-fg: var(--nx-navy-900);
  --cta-bg: var(--nx-surface-2);
  --cta-drop: #CBD5E1;
  --cta-shadow: none;
  --cta-border: 1.5px solid var(--nx-border);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 40px;
  background: linear-gradient(180deg, rgba(5, 12, 40, 0.88), rgba(5, 12, 40, 0));
  backdrop-filter: blur(8px);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__logo {
  height: 26px;
  filter: drop-shadow(0 0 12px rgba(0, 244, 255, 0.4));
}

.site-header__nav {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.site-header__link,
.site-header__signin {
  font-family: var(--nx-font-body);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.site-header__signin {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.site-header__language {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 92px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    rgba(6, 13, 34, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
  font-family: var(--nx-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.site-header__language-trigger:hover {
  border-color: rgba(0, 244, 255, 0.4);
  transform: translateY(-1px);
}

.site-header__language-trigger--open {
  border-color: rgba(0, 244, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 244, 255, 0.12);
}

.site-header__language-code {
  min-width: 2.8em;
  text-align: center;
}

.site-header__language-caret {
  font-size: 11px;
  line-height: 1;
  opacity: 0.9;
}

.site-header__language-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 252px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(9, 17, 43, 0.98), rgba(5, 12, 32, 0.98)),
    rgba(5, 12, 40, 0.92);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--nx-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.site-header__language-option:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 244, 255, 0.35);
  background: rgba(0, 244, 255, 0.08);
}

.site-header__language-option.is-active {
  border-color: rgba(0, 244, 255, 0.6);
  background: linear-gradient(180deg, rgba(0, 244, 255, 0.2), rgba(0, 244, 255, 0.1));
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-header__menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(6, 13, 34, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.site-header__menu-toggle:hover {
  border-color: rgba(0, 244, 255, 0.38);
  transform: translateY(-1px);
}

.site-header__menu-toggle:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 3px;
}

.site-header__menu-toggle-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.site-header__menu-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px rgba(0, 244, 255, 0.18);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease, bottom 180ms ease;
}

.site-header__menu-toggle-line--top {
  top: 0;
}

.site-header__menu-toggle-line--middle {
  top: 6px;
}

.site-header__menu-toggle-line--bottom {
  bottom: 0;
}

.site-header__menu-toggle--open .site-header__menu-toggle-line--top {
  top: 6px;
  transform: rotate(45deg);
}

.site-header__menu-toggle--open .site-header__menu-toggle-line--middle {
  opacity: 0;
  transform: scaleX(0.25);
}

.site-header__menu-toggle--open .site-header__menu-toggle-line--bottom {
  bottom: 6px;
  transform: rotate(-45deg);
}

.site-header__language--menu {
  width: 100%;
}

.site-header__language-label {
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.site-header__language-panel--menu {
  position: static;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header__language-panel--menu .site-header__language-option {
  min-height: 48px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 1400;
  padding:
    calc(clamp(10px, 2.5vw, 18px) + env(safe-area-inset-top, 0px))
    calc(clamp(10px, 2.5vw, 18px) + env(safe-area-inset-right, 0px))
    calc(clamp(10px, 2.5vw, 18px) + env(safe-area-inset-bottom, 0px))
    calc(clamp(10px, 2.5vw, 18px) + env(safe-area-inset-left, 0px));
  background:
    radial-gradient(circle at 18% 6%, rgba(0, 244, 255, 0.12) 0%, transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(251, 197, 47, 0.12) 0%, transparent 24%),
    linear-gradient(180deg, rgba(5, 12, 40, 0.84), rgba(4, 8, 20, 0.96));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  animation: mobile-menu-overlay-fade 220ms ease-out;
  overscroll-behavior: contain;
}

.site-menu__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 244, 255, 0.12) 0%, transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(225, 29, 72, 0.08) 0%, transparent 26%),
    linear-gradient(180deg, rgba(9, 17, 43, 0.98), rgba(5, 12, 32, 0.99));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: mobile-menu-panel-pop 300ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top right;
}

.site-menu__panel::before,
.site-menu__panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.site-menu__panel::before {
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 244, 255, 0.14) 0%, transparent 68%);
  opacity: 0.7;
}

.site-menu__panel::after {
  left: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 197, 47, 0.08) 0%, transparent 72%);
  opacity: 0.75;
}

.site-menu__topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 4px 12px;
}

.site-menu__brand {
  display: inline-flex;
  align-items: center;
}

.site-menu__logo {
  height: 26px;
  filter: drop-shadow(0 0 12px rgba(0, 244, 255, 0.28));
}

.site-menu__close {
  flex: 0 0 auto;
}

.site-menu__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 4px 6px;
  -webkit-overflow-scrolling: touch;
}

.site-menu__eyebrow {
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 244, 255, 0.82);
}

.site-menu__nav {
  display: grid;
  gap: 12px;
}

.site-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  color: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(18px);
  animation: mobile-menu-link-in 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(120ms + (var(--menu-item-index, 0) * 70ms));
}

.site-menu__link:hover,
.site-menu__link:focus-visible {
  border-color: rgba(0, 244, 255, 0.34);
  background: linear-gradient(180deg, rgba(0, 244, 255, 0.1), rgba(255, 255, 255, 0.04));
  transform: translateY(-1px);
  outline: none;
}

.site-menu__link-label {
  flex: 1;
  font-family: var(--nx-font-display);
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.site-menu__link-arrow {
  flex: 0 0 auto;
  font-size: 18px;
  color: rgba(0, 244, 255, 0.92);
  transition: transform 160ms ease;
}

.site-menu__link:hover .site-menu__link-arrow,
.site-menu__link:focus-visible .site-menu__link-arrow {
  transform: translateX(2px);
}

.site-menu__actions {
  display: grid;
  gap: 10px;
  padding-top: 4px;
  animation: mobile-menu-section-in 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 340ms;
}

.site-menu__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--nx-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-menu__signin:hover,
.site-menu__signin:focus-visible {
  border-color: rgba(0, 244, 255, 0.32);
  background: rgba(0, 244, 255, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.site-menu__download {
  width: 100%;
  min-width: 0;
}

.site-menu__download.chunky-cta {
  width: 100%;
}

.site-menu__accordion {
  position: sticky;
  bottom: 0;
  z-index: 20;
  display: grid;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  animation: mobile-menu-section-in 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 400ms;
}

.site-menu__accordion.is-open {
  z-index: 180;
}

.site-menu__accordion-trigger {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.site-menu__accordion-trigger:hover,
.site-menu__accordion-trigger:focus-visible {
  border-color: rgba(0, 244, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(0, 244, 255, 0.1), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  outline: none;
}

.site-menu__accordion-label {
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255, 255, 255, 0.64);
}

.site-menu__accordion-value {
  font-family: var(--nx-font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.site-menu__accordion-icon {
  font-size: 11px;
  line-height: 1;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-menu__accordion-trigger.is-open .site-menu__accordion-icon {
  transform: rotate(180deg);
  opacity: 1;
}

.site-menu__accordion-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 190;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transform-origin: bottom center;
  pointer-events: none;
  transition: grid-template-rows 240ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-menu__accordion-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: mobile-menu-accordion-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-menu__accordion-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 12px;
  background:
    linear-gradient(180deg, rgba(9, 17, 43, 0.98), rgba(5, 12, 32, 0.99)),
    rgba(5, 12, 40, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-menu__language-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 2px 4px;
  max-height: min(320px, calc(100dvh - 240px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.site-menu__language-grid::-webkit-scrollbar {
  display: none;
}

.site-menu__language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.site-menu__language-option:hover,
.site-menu__language-option:focus-visible {
  border-color: rgba(0, 244, 255, 0.38);
  background: rgba(0, 244, 255, 0.08);
  transform: translateY(-1px);
  color: #FFFFFF;
  outline: none;
}

.site-menu__language-option.is-active {
  border-color: rgba(0, 244, 255, 0.64);
  background: linear-gradient(180deg, rgba(0, 244, 255, 0.18), rgba(0, 244, 255, 0.08));
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes mobile-menu-overlay-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mobile-menu-panel-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mobile-menu-link-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-menu-section-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobile-menu-accordion-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: visible;
  padding-top: var(--site-header-height);
  background: radial-gradient(ellipse at 70% 30%, #1A3EC0 0%, #0E1E4F 45%, #050C28 100%);
}

.hero__stage {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero__starfield {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 244, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(228, 71, 50, 0.18) 0%, transparent 40%);
}

.hero__beam {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 2px;
  height: 800px;
  background: linear-gradient(180deg, transparent, var(--nx-cyan), transparent);
  filter: blur(1px);
  transform: rotate(12deg);
  opacity: 0.7;
}

.hero__beam--secondary {
  top: -200px;
  right: 15%;
  left: auto;
  height: 900px;
  transform: rotate(-8deg);
  opacity: 0.5;
}

.hero__grid-floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180%;
  height: 500px;
  transform: translateX(-50%) perspective(600px) rotateX(60deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(0, 244, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 244, 255, 0.2) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(0deg, black 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(0deg, black 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 80px 0;
}

.hero__left{
  margin-top:-50px;
}

.hero__pill,
.season-pass__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
}

.hero__pill-dot,
.season-pass__pill-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.hero__pill {
  margin-bottom: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(188, 40, 23, 0.92);
  box-shadow: 0 0 20px rgba(228, 71, 50, 0.5);
}

.hero__pill-dot {
  background: #FFFFFF;
}

.season-pass__pill {
  margin-bottom: 22px;
  border: 1.5px solid rgba(251, 197, 47, 0.55);
  background: rgba(251, 197, 47, 0.18);
}

.season-pass__pill-dot {
  background: #FBC52F;
}

.hero__pill-text,
.season-pass__pill-text,
.season-pass__side-label,
.season-pass__xp-label,
.season-pass__xp-meta,
.site-footer__device,
.modes__eyebrow,
.creator-studios__badge-text,
.stats-band__eyebrow {
  font-family: var(--nx-font-body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__pill-text {
  font-size: 11px;
  color: #FFFFFF;
}

.season-pass__pill-text {
  font-size: 11px;
  color: #FFE28A;
}

.hero__title,
.season-pass__title,
.creator-studios__title,
.modes__title,
.stats-band__title,
.site-footer__title {
  margin: 0;
  font-family: var(--nx-font-display);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.hero__title {
  font-size: clamp(84px, 9vw, 140px);
  line-height: 0.88;
  text-shadow: 0 6px 0 rgba(5, 12, 40, 0.75), 0 0 48px rgba(0, 244, 255, 0.45);
}

.hero__title-accent {
  color: var(--nx-cyan);
  text-shadow: 0 6px 0 rgba(5, 102, 170, 0.6), 0 0 60px rgba(0, 244, 255, 0.85);
}

.hero__lead,
.season-pass__lead,
.creator-studios__lead,
.site-footer__lead {
  margin: 0;
  font-family: var(--nx-font-body);
  font-weight: 500;
  line-height: 1.5;
}

.hero__lead {
  max-width: 500px;
  margin-top: 32px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions,
.season-pass__actions,
.creator-studios__actions,
.site-footer__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__actions {
  margin-top: 40px;
}

.hero__platforms,
.season-pass__side-row,
.season-pass__xp-row,
.season-pass__meta,
.site-footer__devices {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero__platforms {
  gap: 16px;
  margin-top: 40px;
}

.hero__platform-label {
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__platform-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.hero__platform-chip,
.site-footer__device {
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease,
    transform 0.18s ease;
}

.hero__platform-chip:hover,
.hero__platform-chip:focus-visible,
.site-footer__device:hover,
.site-footer__device:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  transform: translateY(-1px);
  outline: none;
}

.hero__art {
  position: relative;
  align-self: center;
  aspect-ratio: 4 / 5;
}

.hero__art-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(0, 244, 255, 0.35) 0%, transparent 60%);
  filter: blur(20px);
}

.hero__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 6%, 96% 96%, 0 100%);
  background: linear-gradient(160deg, #0566AA 0%, #1A3EC0 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.hero__frame-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame-border {
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 0, 100% 6%, 96% 96%, 0 100%);
  border: 15px solid var(--nx-cyan);
  filter: drop-shadow(0 0 16px rgba(0, 244, 255, 0.6));
}

.hero__corner-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  padding: 12px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FBC52F, #E39A0B);
  color: #4A2E00;
  font-family: var(--nx-font-display);
  font-size: 18px;
  box-shadow: 0 8px 0 #A86F07, inset 0 2px 0 rgba(255, 255, 255, 0.5);
  transform: rotate(6deg);
}

.hero__ticker-shell {
  position: relative;
  z-index: 3;
  min-height: var(--hero-ticker-height, 48px);
}

.hero__ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 14px 0;
  background: var(--nx-cyan);
  border-top: 3px solid #0E1E4F;
  border-bottom: 3px solid #0E1E4F;
  color: var(--nx-navy-900);
}

.hero__ticker--pinned {
  position: fixed;
  inset-inline: 0;
  top: calc(var(--site-header-height) + env(safe-area-inset-top, 0px));
  z-index: 45;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.hero__ticker-track {
  display: flex;
  gap: 40px;
  font-family: var(--nx-font-display);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  overscroll-behavior: contain;
  animation: trailer-modal-fade 180ms ease-out;
}

.trailer-modal__panel {
  position: relative;
  width: min(100%, 1100px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14, 30, 79, 0.94) 0%, rgba(5, 12, 40, 0.98) 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: trailer-modal-pop 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.trailer-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 72px;
  margin-bottom: 16px;
}

.trailer-modal__eyebrow {
  font-family: var(--nx-font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--nx-cyan);
}

.trailer-modal__language {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 12px 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.trailer-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-family: var(--nx-font-display);
  font-size: 48px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.trailer-modal__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.trailer-modal__close:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 3px;
}

.trailer-modal__frame {
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
}

.trailer-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-modal--document .trailer-modal__panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 1180px);
  height: min(90vh, 980px);
  padding: 20px;
}

.trailer-modal--document .trailer-modal__header {
  flex: 0 0 auto;
  margin-bottom: 14px;
}

.trailer-modal--document .trailer-modal__frame {
  flex: 1 1 auto;
  min-height: 0;
  aspect-ratio: auto;
}

.trailer-modal--document .trailer-modal__frame iframe {
  background: #050C28;
}

.cookie-consent {
  position: fixed;
  left: calc(clamp(14px, 2vw, 24px) + env(safe-area-inset-left, 0px));
  bottom: calc(clamp(14px, 2vw, 24px) + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  width: min(380px, calc(100vw - 28px));
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 244, 255, 0.18) 0%, transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(251, 197, 47, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, rgba(10, 18, 48, 0.96), rgba(5, 12, 40, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  animation: cookie-consent-pop 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--nx-cyan) 0%, #4FA8F5 34%, #FBC52F 68%, #BC2817 100%);
}

.cookie-consent__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 5px 11px 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--nx-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cookie-consent__title {
  margin: 12px 0 8px;
  font-family: var(--nx-font-display);
  font-size: 24px;
  line-height: 0.98;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.cookie-consent__copy {
  margin: 0;
  color: rgba(231, 238, 252, 0.82);
  font-family: var(--nx-font-body);
  font-size: 12px;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cookie-consent__action.chunky-cta {
  width: 100%;
  min-height: 0;
  --cta-font-size: 12px;
  --cta-padding: 10px 12px 12px;
  --cta-radius: 12px;
  --cta-drop-size: 4px;
}

.cookie-consent__policy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 120ms ease, opacity 120ms ease, transform 120ms ease;
}

.cookie-consent__policy:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.cookie-consent__policy:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 3px;
}

@keyframes trailer-modal-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes trailer-modal-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cookie-consent-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modes {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background: #050C28;
}

.modes__ambient {
  position: absolute;
  top: 30%;
  left: -20%;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(5, 102, 170, 0.3) 0%, transparent 60%);
  filter: blur(60px);
}

.modes__inner {
  z-index: 1;
}

.modes__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.modes__eyebrow {
  font-size: 12px;
  color: var(--nx-cyan);
}

.modes__title {
  font-size: clamp(64px, 7vw, 90px);
  line-height: 0.95;
  margin-top: 16px;
  color: #FFFFFF;
  text-shadow: 0 4px 0 rgba(5, 12, 40, 0.6);
}

.modes__controls {
  display: flex;
  gap: 10px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-size: 18px;
}

.nav-btn--primary {
  border: 0;
  background: var(--nx-cyan);
  color: var(--nx-navy-900);
  box-shadow: 0 0 24px rgba(0, 244, 255, 0.6);
}

.nav-btn--square {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 16px;
}

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

.mode-card {
  --mode-accent: var(--nx-blue-500);
  --mode-shadow: rgba(79, 168, 245, 0.6);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, filter 200ms ease-out;
  background-repeat: no-repeat;
  background-size: cover;
}

.mode-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 244, 255, 0.25);
}

.mode-card__tier {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--mode-accent);
  color: var(--nx-navy-900);
  font-family: var(--nx-font-body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 16px var(--mode-shadow);
}

.mode-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--nx-font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--mode-accent);
  text-shadow: 0 0 12px var(--mode-shadow);
}

.mode-card__content {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 22px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 12, 40, 0.95) 50%);
}

.mode-card__title {
  margin: 0;
  font-family: var(--nx-font-display);
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.4);
}

.mode-card__body {
  margin: 8px 0 0;
  font-family: var(--nx-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.mode-card--blue {
  --mode-accent: #3B82F6;
  --mode-shadow: rgba(59, 130, 246, 0.6);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(59, 130, 246, 0.33) 0%, #0E1E4F 100%);
}

.mode-card--purple {
  --mode-accent: #8B5CF6;
  --mode-shadow: rgba(139, 92, 246, 0.6);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(139, 92, 246, 0.33) 0%, #0E1E4F 100%);
}

.mode-card--teal {
  --mode-accent: #14B8A6;
  --mode-shadow: rgba(20, 184, 166, 0.6);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(20, 184, 166, 0.33) 0%, #0E1E4F 100%);
}

.mode-card--gold {
  --mode-accent: #FBC52F;
  --mode-shadow: rgba(251, 197, 47, 0.65);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(251, 197, 47, 0.33) 0%, #0E1E4F 100%);
}

.mode-card--rose {
  --mode-accent: #E11D48;
  --mode-shadow: rgba(225, 29, 72, 0.6);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(225, 29, 72, 0.33) 0%, #0E1E4F 100%);
}

.mode-card--cyan {
  --mode-accent: #00F4FF;
  --mode-shadow: rgba(0, 244, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(5, 12, 40, 0.2) 0%, #050C28 85%),
    linear-gradient(160deg, rgba(0, 244, 255, 0.28) 0%, #0E1E4F 100%);
}

.season-pass {
  position: relative;
  overflow: hidden;
  padding-block: 120px;
  background: #050C28;
}

.season-pass__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #7A1A0F 0%, #BC2817 25%, #0E1E4F 55%, #0566AA 100%);
  opacity: 0.85;
}

.season-pass__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180%;
  height: 600px;
  transform: translateX(-50%) perspective(700px) rotateX(62deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(0, 244, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 244, 255, 0.28) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(0deg, black 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(0deg, black 0%, transparent 75%);
}

.season-pass__stripe {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(90deg, #BC2817 0%, #BC2817 48%, transparent 48%, transparent 52%, #0566AA 52%, #0566AA 100%);
  clip-path: polygon(0 0, 48% 0, 52% 100%, 0 100%, 52% 100%, 48% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.85;
}

.season-pass__content {
  z-index: 1;
}

.season-pass__header {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.season-pass__title {
  font-size: clamp(72px, 7.5vw, 110px);
  line-height: 0.88;
  color: #FFFFFF;
}

.season-pass__title-red {
  color: #E84732;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.35), 0 0 40px rgba(232, 71, 50, 0.45);
}

.season-pass__title-blue {
  color: #4FA8F5;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.35), 0 0 40px rgba(79, 168, 245, 0.45);
}

.season-pass__lead {
  max-width: 520px;
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.season-pass__lead-red {
  color: #E84732;
  font-weight: 800;
}

.season-pass__lead-blue {
  color: #4FA8F5;
  font-weight: 800;
}

.season-pass__side-row {
  gap: 12px;
  margin-top: 32px;
}

.season-pass__side-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.team-btn {
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-family: var(--nx-font-display);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.team-btn--red {
  background: linear-gradient(180deg, #E84732, #9A1B0F);
  box-shadow: 0 5px 0 #5A0F06, inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.team-btn--blue {
  background: linear-gradient(180deg, #3B7BD1, #1E3A8A);
  box-shadow: 0 5px 0 #0B1E4F, inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.season-pass__art {
  position: relative;
  aspect-ratio: 16 / 11;
}

.season-pass__art-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 244, 255, 0.15);
}

.season-pass__art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.season-pass__art-badge,
.season-pass__art-tag {
  position: absolute;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--nx-font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.season-pass__art-badge {
  top: -14px;
  left: -14px;
  border: 2px solid #FBC52F;
  background: linear-gradient(180deg, #0E1E4F, #050C28);
  color: #FFFFFF;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.4);
}

.season-pass__art-badge-red {
  color: #E84732;
}

.season-pass__art-badge-blue {
  color: #4FA8F5;
}

.season-pass__art-tag {
  top: -18px;
  right: -14px;
  background: linear-gradient(180deg, #FFD95A, #E39A0B);
  color: #4A2E00;
  transform: rotate(6deg);
  box-shadow: 0 6px 0 #A86F07, inset 0 2px 0 rgba(255, 255, 255, 0.55);
}

.season-pass__xp {
  margin-bottom: 24px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(5, 12, 40, 0.7) 0%, rgba(14, 30, 79, 0.85) 100%);
  backdrop-filter: blur(6px);
}

.season-pass__xp-row {
  gap: 20px;
}

.season-pass__xp-player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.season-pass__popup-level{
  width: 80px;
}

.season-pass__xp-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.season-pass__xp-value {
  margin-top: 0;
  font-family: var(--nx-font-display);
  font-size: 22px;
  line-height: 1;
  color: #FFFFFF;
}

.season-pass__xp-progress {
  flex: 1;
  min-width: 200px;
}

.season-pass__xp-meta {
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.season-pass__xp-meta-accent {
  color: #FBC52F;
}

.season-pass__progress {
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.season-pass__progress-fill {
  width: 53%;
  height: 100%;
  background: linear-gradient(90deg, #E84732 0%, #FBC52F 50%, #4FA8F5 100%);
  box-shadow: 0 0 20px rgba(251, 197, 47, 0.6);
}

.season-pass__xp-nav {
  display: flex;
  gap: 8px;
}

.season-pass__reel {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.tier-card {
  --tier-ribbon-bg: linear-gradient(180deg, #FFD95A 0%, #FBC52F 55%, #E39A0B 100%);
  --tier-ribbon-fg: #3C2A63;
  --tier-ribbon-shadow: rgba(138, 92, 0, 0.78);
  --tier-badge-fg: #3C2A63;
  --tier-badge-wing: #36457F;
  --tier-body-bg: linear-gradient(180deg, #6D86E7 0%, #5875DE 100%);
  --tier-footer-bg: linear-gradient(180deg, #39529B 0%, #2E437F 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: min(100%, 210px);
  aspect-ratio: 5 / 6;
  padding: 1px;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18), 0 18px 24px rgba(0, 0, 0, 0.22);
  transition: transform 220ms, filter 220ms, box-shadow 220ms;
}

.tier-card--free {
  --tier-ribbon-bg: linear-gradient(180deg, #7DEB9A 0%, #27C086 55%, #129964 100%);
  --tier-ribbon-fg: #083B29;
  --tier-ribbon-shadow: rgba(6, 92, 63, 0.82);
  --tier-badge-fg: #083B29;
  --tier-badge-wing: #184C5F;
  --tier-body-bg: linear-gradient(180deg, #6AA8E8 0%, #4E87E0 100%);
  --tier-footer-bg: linear-gradient(180deg, #36529B 0%, #253B78 100%);
}

.tier-card--claimed {
  filter: saturate(0.68) brightness(0.94);
}

.tier-card--locked {
  filter: saturate(0.85) brightness(0.98);
}

.tier-card--current {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.18), 0 20px 28px rgba(0, 0, 0, 0.24), 0 0 0 2px rgba(251, 197, 47, 0.54);
}

.tier-card__ribbon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  padding: 6px 10px 6px 12px;
  border-radius: 9px 9px 0 0;
  background: var(--tier-ribbon-bg);
  color: var(--tier-ribbon-fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 3px 0 var(--tier-ribbon-shadow);
  font-family: var(--nx-font-display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tier-card__ribbon-label {
  white-space: nowrap;
  line-height: 1;
}

.tier-card__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  background: linear-gradient(180deg, #FFF1A0 0%, #FBC52F 55%, #E39A0B 100%);
  color: var(--tier-badge-fg);
  clip-path: polygon(16% 0, 84% 0, 100% 50%, 84% 100%, 16% 100%, 0 50%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.55), 0 2px 0 rgba(0, 0, 0, 0.18);
  font-family: var(--nx-font-display);
  font-size: 13px;
  line-height: 1;
}

.tier-card__badge::before,
.tier-card__badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 14px;
  background: var(--tier-badge-wing);
  transform: translateY(-50%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  opacity: 0.96;
}

.tier-card__badge::before {
  left: -7px;
}

.tier-card__badge::after {
  right: -7px;
  transform: translateY(-50%) scaleX(-1);
}

.tier-card__badge-value {
  position: relative;
  transform: translateY(-1px);
}

.tier-card__body {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background: var(--tier-body-bg);
}

.tier-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 26%, transparent 60%);
  pointer-events: none;
}

.tier-card__art-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 12px 10px 10px;
}

.tier-card__art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.32));
}

.tier-card__art--card {
  max-width: 78%;
  max-height: 74%;
}

.tier-card__art--standard {
  max-width: 88%;
  max-height: 84%;
}

.tier-card__art--compact {
  max-width: 70%;
  max-height: 70%;
}

.tier-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 34px;
  padding: 7px 12px 8px 14px;
  background: var(--tier-footer-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tier-card__name {
  overflow: hidden;
  max-width: 100%;
  color: #FFFFFF;
  font-family: var(--nx-font-display);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-card__next,
.tier-card__claim {
  position: absolute;
  z-index: 3;
  border-radius: 4px;
  font-family: var(--nx-font-body);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tier-card__next {
  top: 10px;
  right: 10px;
  padding: 3px 7px 4px;
  background: rgba(14, 30, 79, 0.92);
  color: #FBC52F;
  font-size: 9px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.tier-card__claim {
  right: 10px;
  bottom: 42px;
  padding: 5px 12px 4px;
  background: linear-gradient(180deg, #FFD95A, #E39A0B);
  color: #4A2E00;
  font-family: var(--nx-font-display);
  font-size: 12px;
  box-shadow: 0 4px 0 #A86F07, inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.season-pass__meta {
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
}

.season-pass__footnote {
  font-family: var(--nx-font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.season-pass__footnote-gold {
  font-weight: 900;
  color: #FBC52F;
}

.season-pass__footnote-free {
  font-weight: 900;
  color: #2EE6A6;
}

.season-pass__price-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.season-pass__price-label {
  font-family: var(--nx-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.season-pass__price {
  font-family: var(--nx-font-display);
  font-size: 32px;
  line-height: 1;
  color: #FBC52F;
}

.creator-studios {
  position: relative;
  overflow: hidden;
  padding-block: 140px;
  background: #FFFFFF;
}

.creator-studios__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
}

.creator-studios__badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
}

.creator-studios__badge-text {
  font-size: 11px;
  color: #0F766E;
}

.creator-studios__title {
  font-size: clamp(64px, 7vw, 100px);
  line-height: 0.92;
  color: var(--nx-navy-900);
  text-shadow: 0 4px 0 rgba(14, 30, 79, 0.08);
}

.creator-studios__title-accent {
  color: var(--nx-red);
}

.creator-studios__lead {
  max-width: 480px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--nx-text-secondary);
}

.creator-studios__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1.5px solid var(--nx-border);
}

.creator-studios__stat-value {
  font-family: var(--nx-font-display);
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--nx-blue);
}

.creator-studios__stat-label {
  margin-top: 8px;
  font-family: var(--nx-font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nx-text-tertiary);
}

.creator-studios__art {
  position: relative;
  aspect-ratio: 4 / 5;
}

.creator-studios__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(4% 0, 100% 2%, 98% 100%, 0 96%);
  background: linear-gradient(160deg, #0E1E4F 0%, #0566AA 100%);
  box-shadow: 0 40px 80px rgba(14, 30, 79, 0.35);
}

.creator-studios__floor {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180%;
  height: 400px;
  transform: translateX(-50%) perspective(400px) rotateX(55deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(0, 244, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 244, 255, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
}

.creator-studios__image {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 85%;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.creator-studios__border {
  position: absolute;
  inset: 0;
  clip-path: polygon(4% 0, 100% 2%, 98% 100%, 0 96%);
  border: 13px solid var(--nx-cyan);
  filter: drop-shadow(0 0 12px rgba(0, 244, 255, 0.5));
}

.creator-studios__floating-card {
  position: absolute;
  top: 4%;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(14, 30, 79, 0.2);
  transform: rotate(-6deg);
}

.creator-studios__floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #DBEAFE;
  color: #3B82F6;
  font-size: 18px;
  font-weight: 900;
}

.creator-studios__floating-title {
  font-family: var(--nx-font-body);
  font-size: 13px;
  font-weight: 900;
  color: var(--nx-navy-900);
}

.creator-studios__floating-sub {
  font-family: var(--nx-font-body);
  font-size: 11px;
  color: var(--nx-text-secondary);
}

.creator-studios__profit {
  position: absolute;
  right: -40px;
  bottom: 18%;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FFD95A, #E39A0B);
  color: #4A2E00;
  box-shadow: 0 8px 0 #A86F07, inset 0 2px 0 rgba(255, 255, 255, 0.5);
  transform: rotate(5deg);
}

.creator-studios__profit-title {
  font-family: var(--nx-font-display);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.creator-studios__profit-sub {
  margin-top: 4px;
  font-family: var(--nx-font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-band {
  position: relative;
  padding-block: 120px;
  background: #FFFFFF;
}

.stats-band__eyebrow {
  font-size: 12px;
  color: var(--nx-red);
}

.stats-band__title {
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.95;
  margin-top: 14px;
  color: var(--nx-navy-900);
}

.stats-band__header {
  max-width: 780px;
  margin-bottom: 56px;
}

.stats-band__title-accent {
  color: var(--nx-blue);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stats-card {
  --pillar-color: var(--nx-yellow);
  position: relative;
  overflow: hidden;
  padding: 28px 24px 32px;
  border: 1px solid var(--nx-border);
  border-radius: 18px;
  background: #F8FAFC;
}

.stats-card__bar {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--pillar-color);
}

.stats-card__index {
  margin-top: 8px;
  font-family: var(--nx-font-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--pillar-color);
}

.stats-card__title {
  margin: 16px 0 0;
  font-family: var(--nx-font-display);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--nx-navy-900);
}

.stats-card__body {
  margin: 10px 0 0;
  font-family: var(--nx-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--nx-text-secondary);
}

.pillar--gold {
  --pillar-color: var(--nx-yellow);
}

.pillar--cyan {
  --pillar-color: var(--nx-cyan);
}

.pillar--red {
  --pillar-color: #E84732;
}

.pillar--blue {
  --pillar-color: #4FA8F5;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 80px 32px;
  background: #050C28;
  color: #FFFFFF;
}

.site-footer__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 244, 255, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  transform: translateX(-50%);
}

.site-footer__hero {
  margin-bottom: 60px;
  padding-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__title {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  color: #FFFFFF;
  text-shadow: 0 0 60px rgba(0, 244, 255, 0.5);
}

.site-footer__title-accent {
  color: var(--nx-cyan);
}

.site-footer__lead {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__actions {
  justify-content: center;
  margin-top: 32px;
}

.site-footer__devices {
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__device {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-transform: none;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.site-footer__logo {
  height: 28px;
  margin-bottom: 16px;
}

.site-footer__copy {
  max-width: 320px;
  margin: 0;
  font-family: var(--nx-font-body);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  margin-top: 16px;
}

.site-footer__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-radius: 12px;
  transition: transform 120ms ease, opacity 120ms ease, filter 120ms ease;
}

.site-footer__store-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.site-footer__store-link:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 2px;
}

.site-footer__store-badge {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(0.98) brightness(0.98);
}

.site-footer__heading {
  margin-bottom: 16px;
  font-family: var(--nx-font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--nx-cyan);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__link {
  font-family: var(--nx-font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--nx-font-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__meta > span {
  min-width: 0;
}

.site-footer__meta > span:first-child {
  text-align: left;
}

.site-footer__meta > span:last-child {
  text-align: right;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  transition: transform 120ms ease, border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.site-footer__social-link i {
  font-size: 16px;
  line-height: 1;
}

.site-footer__social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 244, 255, 0.55);
  background: rgba(0, 244, 255, 0.12);
  color: #FFFFFF;
}

.site-footer__social-link:focus-visible {
  outline: 2px solid var(--nx-cyan);
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .hero__content,
  .season-pass__header,
  .creator-studios__inner {
    grid-template-columns: 1fr;
  }

  .hero__left{
    margin-top:0;
  }
  .modes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-pass__reel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 900px) {

  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .site-header__nav,
  .site-header__actions--desktop {
    display: none;
  }

  .site-header__menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__content {
    align-items: start;
    gap: 28px;
    padding: 20px 18px 0;
  }

  .hero__left {
    margin-top: 0;
    min-width: 0;
  }

  .hero__art {
    width: min(100%, 420px);
    justify-self: center;
  }

  .modes,
  .season-pass,
  .creator-studios,
  .stats-band {
    padding-block: 96px;
  }

  .site-footer {
    padding-top: 96px;
  }

  .cookie-consent {
    width: min(340px, calc(100vw - 24px));
  }

  .modes__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .season-pass__reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-studios__stats,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    justify-content: space-between;
    padding: 12px 14px;
  }

  .site-header__logo {
    height: 40px;
  }

  .site-header__menu-toggle {
    width: 48px;
    height: 42px;
    border-radius: 14px;
  }

  .site-header__language-trigger {
    min-width: 78px;
    padding: 8px 11px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .site-header__language-panel {
    right: -4px;
    width: min(240px, calc(100vw - 16px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chunky-cta--md {
    --cta-font-size: 14px;
    --cta-padding: 10px 16px 12px;
    --cta-radius: 12px;
    --cta-drop-size: 4px;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(30px, 9.8vw, 58px);
    line-height: 0.84;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .hero__lead,
  .season-pass__lead,
  .creator-studios__lead,
  .site-footer__lead {
    max-width: 100%;
    font-size: clamp(15px, 4.1vw, 16px);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 15px;
  }

  .hero__ticker {
    padding: 10px 0;
  }

  .hero__ticker-track {
    gap: 28px;
    font-size: 18px;
  }

  .site-footer__stores {
    gap: 8px;
  }

  .site-footer__store-badge {
    height: 36px;
  }

  .hero__actions,
  .season-pass__actions,
  .creator-studios__actions,
  .site-footer__actions,
  .site-footer__devices {
    flex-direction: column;
    align-items: normal;
  }

  .hero__actions {
    margin-top: 24px;
  }

  .hero__actions .chunky-cta {
    width: 100%;
    min-width: 0;
  }

  .season-pass__side-row{
    display: none;
  }
  .hero__platforms,
  .season-pass__xp-row,
  .season-pass__meta {
    align-items: flex-start;
  }

  .hero__platforms {
    margin-top: 18px;
    gap: 10px;
  }

  .hero__platform-chip {
    padding: 4px 8px;
  }

  .season-pass__title {
    font-size: clamp(44px, 13vw, 72px);
  }

  .season-pass__lead {
    max-width: 100%;
  }

  .season-pass__actions {
    align-items: stretch;
  }

  .season-pass__actions .chunky-cta {
    width: 100%;
    min-width: 0;
  }

  .season-pass__actions .chunky-cta__label {
    text-align: center;
  }

  .season-pass__art {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .season-pass__art-badge,
  .season-pass__art-tag {
    max-width: calc(100% - 16px);
    padding: 8px 12px;
    font-size: clamp(12px, 3.8vw, 16px);
  }

  .season-pass__art-badge {
    left: 0;
  }

  .season-pass__art-tag {
    right: 0;
  }

  .season-pass__xp-row,
  .season-pass__meta {
    flex-direction: column;
  }

  .season-pass__xp-progress,
  .season-pass__xp-player,
  .season-pass__xp-nav {
    width: 100%;
  }

  .creator-studios__stats,
  .stats-band__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__meta {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .site-footer__meta > span:last-child {
    text-align: left;
  }

  .site-footer__stores {
    max-width: 100%;
  }

  .site-footer__socials {
    justify-content: flex-start;
  }

  .season-pass__reel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-height: 300px;
  }

  .season-pass__reel::-webkit-scrollbar {
    display: none;
  }

  .season-pass__reel > .sp-card {
    flex: 0 0 210px;
    width: 210px;
    scroll-snap-align: start;
  }

  .season-pass__xp {
    padding: 18px 18px 20px;
  }

  .season-pass__xp-nav {
    justify-content: flex-start;
  }

  .season-pass__price-wrap {
    gap: 8px;
  }

  .trailer-modal {
    padding: 12px;
  }

  .trailer-modal__panel {
    width: min(100%, 1000px);
    padding: 16px;
    border-radius: 22px;
  }

  .trailer-modal__header {
    padding-right: 56px;
    margin-bottom: 12px;
  }

  .trailer-modal__eyebrow {
    font-size: 15px;
  }

  .trailer-modal__language {
    margin-top: 6px;
    padding: 5px 10px 6px;
    font-size: 10px;
  }

  .trailer-modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 36px;
  }

  .trailer-modal__frame {
    border-radius: 16px;
  }

  .trailer-modal--document {
    padding: 10px;
  }

  .trailer-modal--document .trailer-modal__panel {
    width: min(100%, 1000px);
    height: calc(100dvh - 20px);
    padding: 16px;
    border-radius: 22px;
  }

  .trailer-modal--document .trailer-modal__header {
    padding-right: 56px;
    margin-bottom: 12px;
  }

  .trailer-modal--document .trailer-modal__eyebrow {
    font-size: 15px;
  }

  .trailer-modal--document .trailer-modal__language {
    margin-top: 6px;
    padding: 5px 10px 6px;
    font-size: 10px;
  }

  .trailer-modal--document .trailer-modal__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 36px;
  }

  .trailer-modal--document .trailer-modal__frame {
    border-radius: 16px;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

  .cookie-consent__title {
    font-size: 20px;
  }

  .cookie-consent__copy {
    font-size: 11px;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__action.chunky-cta {
    --cta-font-size: 11px;
    --cta-padding: 9px 10px 11px;
  }
}

@media (max-width: 430px) {
  .site-menu {
    padding: 8px;
  }

  .site-menu__panel {
    border-radius: 24px;
  }

  .site-menu__topbar {
    padding: 4px 2px 10px;
  }

  .site-menu__logo {
    height: 22px;
  }

  .site-menu__body {
    gap: 16px;
    padding: 6px 2px 4px;
  }

  .site-menu__link {
    padding: 14px;
  }

  .site-menu__link-label {
    font-size: 16px;
  }

  .site-menu__accordion-trigger {
    min-height: 48px;
    padding: 0 14px;
  }

  .site-menu__accordion-label {
    letter-spacing: 0.18em;
  }

  .site-menu__accordion-value {
    font-size: 15px;
  }

  .site-menu__language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: min(280px, calc(100dvh - 220px));
  }

  .site-menu__language-option {
    min-height: 44px;
  }

  .hero__title {
    font-size: clamp(28px, 20vw, 60px);
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero__platforms {
    display: none;
  }

  .hero__art {
    width: min(100%, 320px);
  }

  .hero__corner-tag {
    top: -16px;
    right: -16px;
    padding: 10px 16px;
    font-size: 16px;
  }

  .hero__frame-border {
    border-width: 12px;
  }
}


.sp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: min(100%, 210px);
  aspect-ratio: 5 / 9;
  padding: 1px;
  overflow: hidden;
  border-radius: 15px;
  font-family: var(--nx-font-display);
  font-weight:500;
}
.sp-card-header {
  color: #47274D;
  background: #FFBE0A;
  padding: 1rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: flex;
  justify-content: space-between;
}
.sp-card-header img { 
  width: 30px;
}
.sp-card-body{
  margin-top: 1rem;
  background: #5A7AE3;
  padding: 1rem;
  min-height: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.sp-card-footer{
  background: #2D3F7A;
  padding: 1rem;
  color: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
