:root {
  --void: #050608;
  --panel: #0d1118;
  --panel-strong: #151b24;
  --text: #f7fbff;
  --muted: #a5b4c5;
  --line: rgba(255, 255, 255, 0.16);
  --acid: #b7ff27;
  --cyan: #36f4ff;
  --red: #ff3d5a;
  --gold: #ffd166;
  --font-display: "Arial Black", Impact, "Franklin Gothic Heavy", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--void);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(54, 244, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(255, 61, 90, 0.13), transparent 26rem),
    linear-gradient(180deg, #050608 0%, #0a0d12 52%, #050608 100%);
  color: var(--text);
  font-family: var(--font-body);
  cursor: none;
}

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

a,
button,
input,
.console-button,
.game-card {
  cursor: none;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--acid);
  color: #050608;
}

.lazy-video-poster {
  position: relative;
  overflow: hidden;
  background-color: #071017;
  background-position: center;
  background-size: cover;
}

.lazy-video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 16, 23, 0.25), transparent 45%, rgba(0, 0, 0, 0.35)),
    radial-gradient(circle at 50% 42%, transparent 0 32%, rgba(0, 0, 0, 0.45) 100%);
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.gaming-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 36px;
  height: 36px;
  pointer-events: none;
  mix-blend-mode: screen;
}

.gaming-cursor::before,
.gaming-cursor::after,
.gaming-cursor span {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(183, 255, 39, 0.9);
  clip-path: polygon(50% 0, 60% 28%, 100% 36%, 66% 50%, 100% 64%, 60% 72%, 50% 100%, 40% 72%, 0 64%, 34% 50%, 0 36%, 40% 28%);
}

.gaming-cursor::after {
  inset: 8px;
  border-color: rgba(54, 244, 255, 0.72);
  animation: cursor-pulse 1.2s ease-in-out infinite;
}

.gaming-cursor span {
  inset: 15px;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  clip-path: none;
  box-shadow: 0 0 16px rgba(183, 255, 39, 0.8);
}

@keyframes cursor-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 8, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(183, 255, 39, 0.65);
  background: linear-gradient(135deg, rgba(183, 255, 39, 0.22), rgba(54, 244, 255, 0.08));
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.92rem;
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.72rem;
}

.primary-nav,
.header-actions,
.hero-actions,
.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-nav {
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav a {
  padding: 10px 12px;
  color: #d8e4f2;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--acid);
}

.header-actions {
  justify-content: flex-end;
}

.language-chip {
  min-width: 44px;
  height: 44px;
  border: 1px solid rgba(54, 244, 255, 0.5);
  background: rgba(54, 244, 255, 0.1);
  color: var(--cyan);
  cursor: pointer;
}

.mobile-menu-toggle,
.mobile-nav-panel {
  display: none;
}

.console-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(183, 255, 39, 0.6);
  background: linear-gradient(180deg, rgba(183, 255, 39, 0.24), rgba(183, 255, 39, 0.08));
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.28), 0 0 22px rgba(183, 255, 39, 0.16);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.console-button:hover,
.console-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--acid);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.28), 0 0 34px rgba(183, 255, 39, 0.34);
}

.console-button--secondary {
  border-color: rgba(54, 244, 255, 0.56);
  background: linear-gradient(180deg, rgba(54, 244, 255, 0.18), rgba(54, 244, 255, 0.06));
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.3), 0 0 22px rgba(54, 244, 255, 0.12);
}

.console-button__input {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #f7fbff;
  color: #050608;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.hero-section {
  position: relative;
  min-height: 760px;
  margin-top: -72px;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 74px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.04) brightness(0.82);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.18) 52%, rgba(5, 6, 8, 0.5)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.82) 0%, transparent 42%);
}

.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 6px);
  opacity: 0.28;
}

.hero-content,
.hero-hud {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 850px;
  transform-origin: left center;
}

.sector-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.sector-row span,
.partner-track span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e6f1ff;
  padding: 9px 12px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.95;
}

.hero-content h1,
.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

.hero-copy,
.page-hero p,
.section-header p,
.identity-section p,
.career-banner p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-hud {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 78px;
  display: grid;
  gap: 8px;
  min-width: 230px;
  padding: 16px;
  border: 1px solid rgba(54, 244, 255, 0.38);
  background: rgba(5, 6, 8, 0.62);
  color: var(--cyan);
  text-transform: uppercase;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.arena-section,
.download-section,
.identity-section,
.team-section,
.event-banner-section,
.mode-section,
.news-section,
.partner-section,
.career-banner,
.video4-banner,
.site-footer,
.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.arena-section,
.download-section,
.identity-section,
.team-section,
.event-banner-section,
.mode-section,
.news-section,
.partner-section,
.career-banner,
.video4-banner {
  padding: 88px 0;
}

.download-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: end;
  min-height: 520px;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(183, 255, 39, 0.22);
  background: #050608;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.download-video,
.download-section__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.download-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.06) brightness(0.7);
}

.download-section__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.84), rgba(5, 6, 8, 0.36) 54%, rgba(5, 6, 8, 0.72)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 7px);
}

.download-copy {
  max-width: 640px;
}

.download-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 5rem);
  text-transform: uppercase;
}

.download-copy p {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.7;
}

.playstore-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  margin-top: 26px;
  padding: 10px 18px 10px 12px;
  border: 1px solid rgba(54, 244, 255, 0.42);
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  box-shadow: 0 0 34px rgba(54, 244, 255, 0.16);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.playstore-button__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, var(--acid), var(--cyan));
  color: #050608;
  font-size: 1.2rem;
}

.playstore-button small,
.playstore-button span:last-child {
  display: block;
}

.playstore-button small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.playstore-button span:last-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
}

.download-grid {
  display: grid;
  gap: 12px;
}

.download-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 8, 0.68);
  backdrop-filter: blur(12px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.download-card span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.download-card h3 {
  margin: 10px 0;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.download-card p {
  color: var(--muted);
}

.download-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 56px;
  border: 1px solid rgba(54, 244, 255, 0.24);
  background: #050608;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
}

.team-video,
.team-section__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.team-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.25) contrast(1.08) brightness(0.62);
}

.team-section__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.76), rgba(5, 6, 8, 0.58)),
    radial-gradient(circle at 74% 18%, rgba(139, 40, 255, 0.26), transparent 24rem),
    radial-gradient(circle at 10% 0%, rgba(54, 244, 255, 0.2), transparent 22rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 70px);
}

.team-brief {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto 28px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(54, 244, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(54, 244, 255, 0.09), rgba(139, 40, 255, 0.11)),
    rgba(5, 8, 18, 0.74);
  box-shadow: 0 0 42px rgba(54, 244, 255, 0.11), inset 0 0 38px rgba(139, 40, 255, 0.08);
  backdrop-filter: blur(12px);
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}

.team-brief h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.team-brief p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.team-card {
  position: relative;
  display: flex;
  min-height: 352px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(54, 244, 255, 0.3);
  background:
    radial-gradient(circle at 16% 0%, rgba(54, 244, 255, 0.15), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
    rgba(4, 7, 20, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), inset 0 0 28px rgba(54, 244, 255, 0.05);
  backdrop-filter: blur(12px);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: border-color 220ms ease, filter 220ms ease, transform 220ms ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(54, 244, 255, 0.18) 46%, transparent 58%);
  translate: -120% 0;
  transition: translate 420ms ease;
}

.team-card:hover::after {
  translate: 120% 0;
}

.team-card:hover {
  border-color: rgba(183, 255, 39, 0.48);
  filter: brightness(1.08);
  transform: translateY(-4px);
}

.team-card__avatar {
  display: flex;
  min-height: 96px;
  align-items: center;
  padding: 24px 20px 4px;
  background:
    radial-gradient(circle at 28% 30%, rgba(54, 244, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(54, 244, 255, 0.14), rgba(139, 40, 255, 0.18));
}

.team-card__avatar span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(54, 244, 255, 0.64);
  background: linear-gradient(135deg, var(--cyan), #8b28ff 74%);
  color: #f7fbff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 32px rgba(54, 244, 255, 0.2);
  border-radius: 50%;
}

.team-card__body,
.team-card__power {
  padding: 20px;
}

.team-card__body {
  flex: 1;
  padding-top: 14px;
}

.team-card__body span,
.team-card__power small {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-card__body h3 {
  margin: 10px 0 6px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.team-card__body strong {
  display: block;
  margin-bottom: 12px;
  color: #f7fbff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.team-card__body p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.team-card__power {
  margin: 0 12px 12px;
  border: 1px solid rgba(54, 244, 255, 0.24);
  background: rgba(5, 6, 8, 0.74);
}

.team-card__power strong {
  display: block;
  margin-top: 4px;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-banner-section {
  position: relative;
  isolation: isolate;
  padding: 82px 0;
}

.event-banner-section::before {
  content: "";
  position: absolute;
  inset: 38px -24px;
  z-index: -1;
  border: 1px solid rgba(183, 255, 39, 0.12);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 61, 90, 0.14), transparent 22rem),
    radial-gradient(circle at 80% 0%, rgba(54, 244, 255, 0.12), transparent 20rem);
  pointer-events: none;
}

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

.event-banner-card {
  position: relative;
  display: block;
  min-height: 360px;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 8, 0.74);
  color: var(--text);
  text-align: left;
  appearance: none;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.event-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(5, 6, 8, 0.92) 100%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 7px);
  pointer-events: none;
}

.event-banner-card__media {
  position: absolute;
  inset: 0;
}

.event-banner-card__media img {
  object-fit: cover;
  transition: scale 420ms ease, filter 420ms ease;
}

.event-banner-card:hover .event-banner-card__media img {
  scale: 1.06;
  filter: saturate(1.18) contrast(1.05);
}

.event-banner-card:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 6px;
}

.event-banner-card__hud {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 150px;
  padding: 12px;
  border: 1px solid rgba(54, 244, 255, 0.36);
  background: rgba(5, 6, 8, 0.72);
  text-align: right;
  text-transform: uppercase;
}

.event-banner-card__hud span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
}

.event-banner-card__hud strong {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.event-banner-card__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.event-banner-card__caption span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(183, 255, 39, 0.6);
  color: var(--acid);
  font-family: var(--font-display);
}

.event-banner-card__caption h3 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
  text-align: right;
  text-transform: uppercase;
}

.banner-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.banner-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(54, 244, 255, 0.14), transparent 28rem),
    rgba(0, 0, 0, 0.86);
}

.banner-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  max-height: calc(100vh - 56px);
  padding: 16px;
  border: 1px solid rgba(183, 255, 39, 0.34);
  background: rgba(5, 6, 8, 0.96);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.banner-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.banner-lightbox__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.banner-lightbox__close {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 61, 90, 0.7);
  background: rgba(255, 61, 90, 0.14);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.banner-lightbox__image {
  position: relative;
  width: 100%;
  height: min(72vh, 720px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050608;
}

.banner-lightbox__image img {
  object-fit: contain;
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header h2,
.identity-section h2,
.career-banner h2,
.footer-arena h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  text-transform: uppercase;
}

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

.game-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.game-card__poster {
  display: grid;
  height: 260px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 61, 90, 0.48), transparent 50%),
    linear-gradient(45deg, rgba(54, 244, 255, 0.34), transparent 48%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 12px),
    #111822;
}

.game-card__poster span {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 4rem;
}

.game-card__content {
  padding: 18px;
}

.game-card__content p,
.game-card__content span,
.game-card__overlay span,
.news-card span,
.news-card small,
.role-grid span {
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.game-card__content h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.game-card__overlay {
  position: absolute;
  inset: auto 10px 10px 10px;
  translate: 0 calc(100% + 12px);
  padding: 18px;
  border: 1px solid rgba(183, 255, 39, 0.42);
  background: rgba(5, 6, 8, 0.9);
  transition: translate 220ms ease;
}

.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.16) 45%, transparent 58%);
  translate: -120% 0;
  transition: translate 420ms ease;
}

.game-card:hover::after {
  translate: 120% 0;
}

.game-card:hover .game-card__overlay,
.game-card:focus-within .game-card__overlay {
  translate: 0 0;
}

.game-card__overlay strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-family: var(--font-display);
}

.game-card__overlay p {
  color: #dbe6ef;
  line-height: 1.55;
}

.identity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.identity-card,
.career-banner,
.footer-arena,
.page-hero {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(183, 255, 39, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.045);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
}

.identity-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 350px;
  overflow: hidden;
  padding: 38px;
  border-color: rgba(54, 244, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(54, 244, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  animation: identity-float 6s ease-in-out infinite;
  box-shadow: inset 0 0 38px rgba(54, 244, 255, 0.06), 0 22px 55px rgba(0, 0, 0, 0.22);
}

.identity-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.identity-card::after {
  content: "CLAMSS / ID";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: rgba(54, 244, 255, 0.48);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.identity-card h2,
.identity-card p,
.identity-card .eyebrow {
  position: relative;
  z-index: 1;
}

.identity-card h2 {
  max-width: 620px;
}

.identity-card p {
  max-width: 520px;
  min-height: 3.4em;
  margin-bottom: 0;
  padding-right: 44px;
}

@keyframes identity-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 900px;
}

.stat-tile {
  position: relative;
  min-height: 166px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(54, 244, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(54, 244, 255, 0.15), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  animation: stat-drift 5.5s ease-in-out infinite;
  box-shadow: inset 0 0 28px rgba(54, 244, 255, 0.06), 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease;
}

.stat-tile:nth-child(2) {
  animation-delay: -1.4s;
}

.stat-tile:nth-child(3) {
  animation-delay: -2.7s;
}

.stat-tile:nth-child(4) {
  animation-delay: -4s;
}

.stat-tile::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-tile::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 6px;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(183, 255, 39, 0.5);
}

.stat-tile:hover {
  border-color: rgba(183, 255, 39, 0.72);
  transform: translateY(-8px) rotateX(4deg);
}

.stat-tile strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--acid);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
  line-height: 0.9;
}

.stat-tile span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 900;
}

@keyframes stat-drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.news-grid,
.role-grid,
.sector-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.news-card,
.role-grid article,
.sector-cards article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.news-card h3,
.news-card h2,
.role-grid h2,
.sector-cards h2 {
  margin: 16px 0;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.news-card p,
.role-grid p,
.sector-cards p {
  color: var(--muted);
  line-height: 1.65;
}

.career-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 38px;
}

.career-banner > div {
  max-width: 720px;
}

.video4-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 390px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: 44px;
  margin-top: 34px;
  border: 1px solid rgba(255, 61, 90, 0.3);
  background: #050608;
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
}

.video4-banner__video,
.video4-banner__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video4-banner__video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.08) brightness(0.68);
}

.video4-banner__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.36) 56%, rgba(5, 6, 8, 0.78)),
    radial-gradient(circle at 78% 24%, rgba(255, 61, 90, 0.24), transparent 22rem),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 8px);
}

.video4-banner__content {
  max-width: 760px;
}

.video4-banner__content h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw, 4.7rem);
  text-transform: uppercase;
}

.video4-banner__content p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.7;
}

.partner-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.partner-section {
  margin-bottom: 44px;
}

.partner-card {
  display: grid;
  min-height: 128px;
  place-items: center;
  gap: 12px;
  padding: 18px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 8, 0.58);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  animation: hud-flicker 4s steps(1) infinite;
  transition: transform 220ms ease, border-color 220ms ease;
}

.partner-card img {
  width: min(100%, 150px);
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(54, 244, 255, 0.18));
}

.partner-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.partner-card:hover {
  border-color: rgba(183, 255, 39, 0.55);
  transform: translateY(-5px);
}

@keyframes hud-flicker {
  0%,
  96%,
  100% {
    opacity: 1;
  }

  97% {
    opacity: 0.55;
  }

  98% {
    opacity: 0.9;
  }
}

.site-footer {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  padding: 110px 0 0;
  overflow: hidden;
}

.footer-arena {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 24px;
  align-items: center;
  padding: 32px;
}

.newsletter {
  display: flex;
  min-width: 0;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  padding: 14px 12px;
}

.newsletter button {
  border: 1px solid rgba(255, 61, 90, 0.7);
  background: rgba(255, 61, 90, 0.16);
  color: #fff;
  padding: 12px 14px;
  cursor: pointer;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 24px;
  padding: 42px 0;
}

.footer-grid h3 {
  color: var(--cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid a,
.social-row a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.footer-grid a:hover,
.social-row a:hover,
.footer-grid a:focus-visible,
.social-row a:focus-visible {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-mega-text {
  margin-top: 42px;
  margin-bottom: -2.2vw;
  color: rgba(247, 251, 255, 0.08);
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 18vw, 15rem);
  line-height: 0.72;
  text-align: center;
  text-shadow: 0 0 42px rgba(54, 244, 255, 0.12);
  white-space: nowrap;
}

.inner-page .site-header {
  margin-bottom: 42px;
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 88px 34px 42px;
}

.page-hero__video,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.06) brightness(0.68);
}

.page-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.86), rgba(5, 6, 8, 0.34) 54%, rgba(5, 6, 8, 0.72)),
    linear-gradient(0deg, rgba(5, 6, 8, 0.84) 0%, transparent 44%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 8px);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 940px;
}

.mode-section {
  padding: 70px 0;
}

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

.mode-grid article {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(54, 244, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(183, 255, 39, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.045);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.mode-grid article::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(183, 255, 39, 0.18);
  rotate: 45deg;
}

.mode-grid span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.mode-grid h2 {
  margin: 18px 0 14px;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.mode-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.sector-cards article span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(183, 255, 39, 0.5);
  color: var(--acid);
  font-family: var(--font-display);
}

.not-found-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  margin-top: -150px;
  padding: 230px 24px 92px;
  isolation: isolate;
}

.not-found-hero__video,
.not-found-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.not-found-hero__video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(1.28) contrast(1.12) brightness(0.52);
}

.not-found-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.42), rgba(5, 6, 8, 0.78)),
    radial-gradient(circle at 50% 30%, rgba(255, 61, 90, 0.24), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgba(54, 244, 255, 0.22), transparent 20rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 76px);
}

.not-found-panel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: clamp(28px, 5vw, 58px);
  text-align: center;
  border: 1px solid rgba(54, 244, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(54, 244, 255, 0.1), rgba(139, 40, 255, 0.12)),
    rgba(4, 7, 20, 0.72);
  box-shadow: 0 0 70px rgba(54, 244, 255, 0.13), inset 0 0 48px rgba(255, 61, 90, 0.08);
  backdrop-filter: blur(14px);
  clip-path: polygon(32px 0, calc(100% - 32px) 0, 100% 32px, 100% calc(100% - 32px), calc(100% - 32px) 100%, 32px 100%, 0 calc(100% - 32px), 0 32px);
}

.not-found-panel h1 {
  margin: 4px 0 0;
  color: transparent;
  font-size: clamp(6rem, 21vw, 15rem);
  line-height: 0.82;
  -webkit-text-stroke: 2px var(--cyan);
  text-shadow: 0 0 42px rgba(54, 244, 255, 0.34);
}

.not-found-panel h2 {
  margin: 18px 0 14px;
  font-size: clamp(1.7rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

.not-found-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.not-found-wireframe {
  position: absolute;
  inset: auto 6vw 70px;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.6fr;
  gap: 12px;
  opacity: 0.72;
  pointer-events: none;
}

.not-found-wireframe span {
  height: 46px;
  border: 1px solid rgba(183, 255, 39, 0.32);
  background: rgba(5, 6, 8, 0.36);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.not-found-routes {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: end;
  padding: 78px 0;
}

.not-found-routes h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  text-transform: uppercase;
}

.not-found-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.not-found-route-card {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: space-between;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(54, 244, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(183, 255, 39, 0.08), rgba(54, 244, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  color: var(--text);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.not-found-route-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--acid));
  opacity: 0.7;
}

.not-found-route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 255, 39, 0.54);
  background:
    linear-gradient(135deg, rgba(183, 255, 39, 0.14), rgba(54, 244, 255, 0.08)),
    rgba(255, 255, 255, 0.065);
}

.not-found-route-card span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.84rem;
}

.not-found-route-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header,
  .arena-section,
  .download-section,
  .identity-section,
  .team-section,
  .event-banner-section,
  .mode-section,
  .news-section,
  .partner-section,
  .career-banner,
  .video4-banner,
  .site-footer,
  .page-hero {
    width: min(100% - 28px, 1180px);
  }

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

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

  .event-banner-grid {
    grid-template-columns: 1fr;
  }

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

  .partner-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .not-found-routes {
    width: min(100% - 28px, 1180px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    position: sticky;
    top: 10px;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 8px 12px;
    border: 1px solid rgba(183, 255, 39, 0.58);
    background: linear-gradient(180deg, rgba(183, 255, 39, 0.18), rgba(54, 244, 255, 0.08));
    color: var(--text);
    text-transform: uppercase;
    font-weight: 900;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }

  .mobile-menu-toggle__orb {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(54, 244, 255, 0.72);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(54, 244, 255, 0.22);
  }

  .mobile-menu-toggle__orb span {
    width: 12px;
    height: 12px;
    border: 2px solid var(--acid);
    border-radius: 999px;
    background: rgba(183, 255, 39, 0.18);
  }

  .mobile-menu-toggle__text {
    min-width: 48px;
    text-align: left;
  }

  .mobile-nav-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    transform-origin: top;
    padding: 14px;
    border: 1px solid rgba(54, 244, 255, 0.28);
    background:
      linear-gradient(135deg, rgba(54, 244, 255, 0.1), transparent 34%),
      rgba(5, 6, 8, 0.92);
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  }

  .mobile-nav-links {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-links a,
  .mobile-join-link {
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
    color: #ecf6ff;
    font-family: var(--font-display);
    text-transform: uppercase;
  }

  .mobile-nav-links a span,
  .mobile-join-link span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 999px;
    background: var(--acid);
    color: #050608;
    font-family: var(--font-display);
    font-size: 0.72rem;
  }

  .mobile-nav-actions {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .hero-section {
    margin-top: -186px;
    min-height: 820px;
    padding-top: 270px;
    align-items: end;
  }

  .hero-hud {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
    width: min(100%, 340px);
  }

  .game-grid,
  .team-grid,
  .news-grid,
  .news-grid--wide,
  .role-grid,
  .sector-cards,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-section,
  .download-section,
  .not-found-routes,
  .footer-arena {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .arena-section,
  .download-section,
  .identity-section,
  .team-section,
  .event-banner-section,
  .mode-section,
  .news-section,
  .partner-section,
  .career-banner,
  .video4-banner,
  .site-footer,
  .not-found-routes,
  .page-hero {
    width: min(100% - 20px, 1180px);
  }

  .hero-section {
    min-height: 780px;
    padding-inline: 16px;
    padding-bottom: 46px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2.45rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .not-found-actions,
  .career-banner,
  .video4-banner,
  .footer-bottom,
  .newsletter {
    align-items: stretch;
    flex-direction: column;
  }

  .console-button {
    width: 100%;
  }

  .game-grid,
  .team-grid,
  .event-banner-grid,
  .mode-grid,
  .news-grid,
  .news-grid--wide,
  .role-grid,
  .sector-cards,
  .stats-grid,
  .partner-track,
  .not-found-route-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .arena-section,
  .download-section,
  .identity-section,
  .team-section,
  .event-banner-section,
  .mode-section,
  .news-section,
  .partner-section,
  .career-banner,
  .video4-banner {
    padding-block: 58px;
  }

  .career-banner,
  .video4-banner,
  .download-section,
  .team-section,
  .event-banner-section,
  .footer-arena,
  .identity-card,
  .page-hero {
    padding: 24px;
  }

  .not-found-hero {
    min-height: 700px;
    padding: 220px 16px 72px;
  }

  .not-found-panel {
    clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  }

  .not-found-routes {
    padding-block: 58px;
  }

  .not-found-wireframe {
    display: none;
  }

  .primary-nav a {
    flex: 1 1 40%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  body,
  a,
  button,
  input,
  .console-button,
  .game-card {
    cursor: auto;
  }

  .gaming-cursor {
    display: none;
  }

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

  .brand-lockup {
    justify-content: flex-start;
  }

  .brand-lockup small {
    font-size: 0.68rem;
  }

  .mobile-menu-toggle {
    min-width: 50px;
    padding-inline: 10px;
  }

  .mobile-menu-toggle__text {
    display: none;
  }

  .mobile-nav-actions .language-chip {
    width: 100%;
  }

  .hero-section {
    margin-top: -236px;
    min-height: 820px;
    padding-top: 312px;
  }

  .sector-row span {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.7rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-hud {
    min-width: 0;
    width: 100%;
  }

  .footer-arena h2,
  .download-copy h2,
  .team-section .section-header h2,
  .video4-banner__content h2,
  .section-header h2,
  .identity-section h2,
  .career-banner h2 {
    font-size: clamp(1.8rem, 12vw, 3rem);
  }

  .stat-tile {
    min-height: 136px;
  }

  .identity-card {
    min-height: 260px;
  }

  .identity-card p {
    min-height: auto;
    padding-right: 0;
  }

  .team-card {
    min-height: 380px;
  }

  .event-banner-card {
    min-height: 300px;
  }

  .event-banner-card__caption {
    align-items: start;
    flex-direction: column;
  }

  .event-banner-card__caption h3 {
    text-align: left;
  }

  .banner-lightbox {
    padding: 12px;
  }

  .banner-lightbox__panel {
    max-height: calc(100vh - 24px);
    padding: 10px;
  }

  .banner-lightbox__header {
    align-items: stretch;
    flex-direction: column;
  }

  .banner-lightbox__close {
    width: 100%;
  }

  .banner-lightbox__image {
    height: min(68vh, 620px);
  }

  .partner-card {
    min-height: 112px;
  }

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

  .footer-mega-text {
    margin-top: 28px;
    font-size: clamp(4.2rem, 22vw, 7rem);
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-lockup strong {
    font-size: 0.88rem;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .console-button {
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .console-button__input {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .hero-video {
    display: none;
  }

  .stat-tile,
  .identity-card,
  .partner-card,
  .gaming-cursor::after {
    animation: none;
  }
}

@media (pointer: coarse) {
  body,
  a,
  button,
  input,
  .console-button,
  .game-card {
    cursor: auto;
  }
}
