@font-face {
  font-family: "Michroma";
  src: url("../assets/fonts/michroma.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #07090d;
  --bg-alt: #0c1017;
  --panel: #121722;
  --panel-edge: #1d2433;
  --gold: #f2b632;
  --gold-soft: #ffd977;
  --cyan: #5fd9ff;
  --text: #e8ecf2;
  --muted: #9aa4b2;
  --ink: #14171c;
  --display: "Michroma", "Segoe UI", sans-serif;
  --body: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.en, .de, .fr, .it, .es, .pt { display: none; }
html[data-lang="en"] .en,
html[data-lang="de"] .de,
html[data-lang="fr"] .fr,
html[data-lang="it"] .it,
html[data-lang="es"] .es,
html[data-lang="pt"] .pt { display: inline; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
}

.topbar {
  padding: 0.45rem 1rem;
  text-align: center;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);

  background: linear-gradient(90deg, #dfa62b 0%, #f0c257 50%, #dfa62b 100%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0.65rem clamp(1rem, 4vw, 2.4rem);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(242, 182, 50, 0.14);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.nav__brand { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 7px rgba(0, 0, 0, 0.85), 0 5px 22px rgba(0, 0, 0, 0.7); }
.nav__brand img { height: 30px; width: auto; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6)); }

.nav__links {
  display: flex;
  gap: 0.95rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 2px 7px rgba(0, 0, 0, 0.85), 0 5px 22px rgba(0, 0, 0, 0.7);
  transition: color 0.2s;
}

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

.nav__lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.nav__lang button {
  background: none;
  border: 1px solid var(--panel-edge);
  color: var(--muted);
  font: 600 0.78rem var(--body);
  letter-spacing: 0.08em;
  padding: 0.28rem 0.42rem;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.nav__lang button:hover { color: var(--text); }

.nav__lang button { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 3px 12px rgba(0, 0, 0, 0.22); }

.nav__lang button.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.nav { position: relative; }

.nav__menu { display: contents; }
.nav__brand { order: 0; }
.nav__links { order: 1; }
.btn--discord.btn--nav { order: 2; }
.btn--steam.btn--nav { order: 3; }
.nav__lang { order: 4; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--panel-edge);
  border-radius: 8px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--steam, .btn--discord {
  background: linear-gradient(180deg, #2a475e 0%, #1b2838 100%);
  color: #c7d5e0;
  border: 1px solid rgba(102, 192, 244, 0.55);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
}

.btn--steam:hover, .btn--discord:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #66c0f4;
  box-shadow: 0 10px 22px rgba(102, 192, 244, 0.22);
}

.btn--discord:focus-visible { outline: 2px solid #66c0f4; outline-offset: 3px; }

.btn__mark { width: 1.15em; height: 1.15em; vertical-align: -0.2em; margin-right: 0.5em; }
.btn--steam:focus-visible { outline: 2px solid #66c0f4; outline-offset: 3px; }

.btn--nav { font-size: 0.74rem; padding: 0.42rem 0.8rem; letter-spacing: 0.06em; }

.btn--nav { line-height: 1.25; text-align: center; white-space: nowrap; }

.btn--icon { padding: 0.42rem 0.6rem; }
.btn--icon .btn__mark { margin-right: 0; width: 1.3em; height: 1.3em; }
.btn--icon > span:not(.btn__mark) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.btn--nav, .btn--nav:hover { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 3px 14px rgba(0, 0, 0, 0.24); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.hero__stack { position: absolute; inset: 0; overflow: hidden; }

.hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;

  transition: opacity 2.4s ease;
  transform: scale(1.04);
  animation: hero-drift 26s ease-in-out infinite alternate;
}

.hero__frame.is-on { opacity: 1; }

.hero__bg,
.hero__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__vid { opacity: 0; transition: opacity 1.2s ease; }
.hero__vid.is-playing { opacity: 1; }

@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.1) translateY(-1.6%); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(7, 9, 13, 0.16) 0%, rgba(7, 9, 13, 0.42) 76%, rgba(7, 9, 13, 0.78) 100%),
    linear-gradient(to bottom, rgba(7, 9, 13, 0.5), rgba(7, 9, 13, 0.22) 36%, rgba(7, 9, 13, 0.26) 66%, var(--bg) 98%);
}

.hero__inner {
  position: relative;
  padding: 5.5rem 1.2rem 3rem;
  max-width: 780px;
}

.hero__logo {
  width: min(516px, 88vw);

  margin: -80px auto 1.6rem;
  filter: drop-shadow(0 10px 34px rgba(0, 0, 0, 0.65));
}

.hero__slogan {

  margin-top: -2.5rem;
  font-family: var(--display);
  font-size: clamp(0.95rem, 2.6vw, 1.35rem);
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.1rem;
}

.hero__sub {
  color: var(--text);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
  max-width: 620px;
  margin: 0 auto 1.7rem;
}

.hero__chips { display: flex; gap: 0.55rem; justify-content: center; flex-wrap: wrap; }

.hero__cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-soft);
  font-size: 1.5rem;
  text-decoration: none;
  animation: cue-bob 2.2s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.section { padding: clamp(3.6rem, 8vw, 6rem) 0; }
.section--alt { background: var(--bg-alt); }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.7rem;
  background: linear-gradient(90deg, var(--gold), rgba(242, 182, 50, 0));
  border-radius: 2px;
}

.subhead {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin: 3rem 0 1.4rem;
  color: var(--gold-soft);
}

.lead {
  max-width: 46rem;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.grid { display: grid; gap: 1.1rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 14px;
  padding: 1.35rem 1.3rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 182, 50, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-family: var(--display);
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: var(--gold-soft);
}

.card p { color: var(--muted); font-size: 0.95rem; }

.card--mode img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  margin-bottom: 0.9rem;
  background: radial-gradient(ellipse at 50% 60%, rgba(95, 217, 255, 0.07), transparent 70%);
  border-radius: 8px;
}

.card--mode h3 { color: var(--text); }

.card--loadout h3 { display: flex; align-items: center; gap: 0.6rem; color: var(--text); }

.tag {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.tag--gold { background: rgba(242, 182, 50, 0.16); color: var(--gold-soft); border: 1px solid rgba(242, 182, 50, 0.4); }

.classlist {
  list-style: none;
  margin-top: 0.8rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.classlist strong {
  color: var(--cyan);
  font-weight: 600;
  display: inline-block;
  min-width: 5.4rem;
}

.chip {
  display: inline-block;
  padding: 0.26rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--panel-edge);
  background: rgba(18, 23, 34, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.chip--gold {
  border-color: rgba(242, 182, 50, 0.5);
  color: var(--gold-soft);
  background: rgba(242, 182, 50, 0.1);
}

.chips { display: flex; gap: 0.45rem; flex-wrap: wrap; }

.grid--venues { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }

.venue {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.venue:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 182, 50, 0.45);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.venue img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.venue:hover img { transform: scale(1.045); }

.venue figcaption { padding: 1.05rem 1.2rem 1.25rem; }

.venue h3 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.venue p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.8rem; }

@media (min-width: 900px) {
  .grid--venues-lead .venue:first-child { grid-column: span 2; }
}

.venue-soon {
  background: var(--panel);
  border: 1px dashed var(--panel-edge);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.venue-soon strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.section--light {
  background: linear-gradient(180deg, #eceef1, #f7f8fa 30%, #e7e9ee);
  color: var(--ink);
}

.section--light h2 { color: var(--ink); }
.section--light .lead { color: #4d5560; }

.grid--gliders { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }

.glider {
  background: radial-gradient(ellipse at 50% 38%, #ffffff 0%, #f2f3f6 68%, #e3e6ec 100%);
  border: 1px solid #d8dce3;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.glider:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20, 23, 28, 0.16);
}

.glider img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter:
    drop-shadow(0 3px 2px rgba(20, 23, 28, 0.10))
    drop-shadow(0 10px 10px rgba(20, 23, 28, 0.12));
}

.glider figcaption {
  position: absolute;
  top: 0.6rem;
  left: 0.85rem;
  font-family: var(--display);
  font-size: 0.8rem;
  color: #9aa1ad;
  letter-spacing: 0.12em;
}

.skinline {
  margin-top: 1.6rem;
  color: #4d5560;
  font-size: 0.92rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.skinline .chip {
  background: #ffffff;
  border-color: #d8dce3;
  color: #39404b;
}

.grid--weapons { grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 1rem; }

.weapon {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.weapon:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 217, 255, 0.4);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.weapon__icon {
  display: grid;
  place-items: center;
  padding: 1.42rem 0.75rem 1.12rem;
  background: radial-gradient(ellipse at 50% 58%, rgba(95, 217, 255, 0.12), transparent 72%);
  border-bottom: 1px solid var(--panel-edge);
}

.weapon__icon img {
  height: 82px;
  width: auto;
  filter: drop-shadow(0 0 11px rgba(95, 217, 255, 0.45));
  transition: transform 0.3s ease;
}

.weapon:hover .weapon__icon img { transform: scale(1.07); }

.weapon__body { padding: 0.8rem 0.9rem 0.95rem; }

.weapon h3 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.weapon p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.85rem; }

.footer {
  border-top: 1px solid var(--panel-edge);
  padding: 3.2rem 1.2rem 2.6rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer__emblem { height: 52px; width: auto; margin: 0 auto 0.9rem; opacity: 0.9; }

.footer__title {
  font-family: var(--display);
  letter-spacing: 0.22em;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.footer__sub {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(95, 217, 255, 0.7);
  margin-bottom: 1.1rem;
}

.footer__fine { margin-top: 1.2rem; font-size: 0.8rem; color: #6b7482; }

.lightbox[hidden] { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(4, 5, 8, 0.9);
  display: grid;
  place-items: center;
  cursor: zoom-out;
  padding: 2vh 2vw;
}

.lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.on { opacity: 1; transform: none; }

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

  .hero__frame { animation: none; }
  .hero__cue { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .nav { gap: 0.7rem; padding-left: 1rem; padding-right: 1rem; }
  .nav__links { gap: 0.55rem; }
  .nav__links a { font-size: 0.75rem; letter-spacing: 0.01em; }
  .nav__brand { font-size: 0.8rem; letter-spacing: 0.1em; }
  .nav__brand img { height: 24px; }
  .btn--nav { font-size: 0.68rem; padding: 0.36rem 0.55rem; }
  .nav__lang { gap: 0.2rem; }
  .nav__lang button { padding: 0.24rem 0.34rem; font-size: 0.7rem; }
}

@media (max-width: 899px) {
  .nav {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav__brand { font-size: 0.7rem; letter-spacing: 0.08em; min-width: 0; overflow: hidden; }
  .nav__brand span { overflow: hidden; white-space: nowrap; }
  .nav__brand img { height: 24px; }

  .btn--steam.btn--nav {
    order: 0;
    margin-left: auto;
    font-size: 0.64rem;
    padding: 0.5rem 0.6rem;
  }

  html.js .nav__burger { display: flex; order: 0; flex-shrink: 0; }

  .nav__menu {
    display: flex;
    order: 0;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0.6rem;
    background: rgba(7, 9, 13, 0.97);
  }

  html.js .nav { flex-wrap: nowrap; }

  html.js .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;

    max-height: calc(100svh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.2rem clamp(1rem, 4vw, 2.4rem) 1.1rem;
    background: rgba(7, 9, 13, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(242, 182, 50, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
  }

  html.js .nav.menu-open .nav__menu { display: flex; }

  .nav__links {
    order: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0;
    margin-left: 0;
  }

  .nav__links a {
    padding: 0.75rem 0.1rem;
    font-size: 1rem;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-shadow: none;
  }

  .nav__menu .btn--nav {
    order: 0;
    align-self: flex-start;
    margin-top: 0.85rem;
    padding: 0.6rem 0.95rem;
    font-size: 0.72rem;
  }

  .nav__menu .btn--icon .btn__mark { margin-right: 0.5em; }

  .nav__menu .btn--icon > span:not(.btn__mark) {
    position: static;
    width: auto;
    height: auto;
    clip-path: none;
  }

  .nav__lang {
    order: 0;
    margin-top: 0.9rem;
    gap: 0.4rem;
  }

  .nav__lang button {
    flex: 1 1 auto;
    min-width: 44px;
    padding: 0.8rem 0.3rem;
    font-size: 0.82rem;
  }

  html { scroll-padding-top: 104px; }
}

@media (max-width: 419px) {
  .nav__brand span { display: none; }
}

.media__stage {
  position: relative;
  border: 1px solid var(--panel-edge);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.media__item { display: none; height: 100%; }
.media__item.is-on { display: block; }
.media__item video, .media__item img { width: 100%; height: 100%; object-fit: contain; display: block; }

.media__item--art {
  background:
    radial-gradient(115% 130% at 24% 20%, rgba(242, 182, 50, 0.22), rgba(7, 9, 13, 0) 60%),
    linear-gradient(135deg, #171b24 0%, #0a0d12 70%);
}

.media__item--art img { padding: clamp(0.6rem, 3vw, 2rem); }

.media__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.media__thumb {
  position: relative;
  width: 150px;
  padding: 0;
  border: 1px solid var(--panel-edge);
  border-radius: 9px;
  overflow: hidden;
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.media__thumb img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.media__thumb:hover { transform: translateY(-2px); border-color: rgba(242, 182, 50, 0.5); }
.media__thumb[aria-pressed="true"] { border-color: var(--gold); }
.media__thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.media__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.25);
}

.media__thumb-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.gliderview {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(20, 23, 28, 0.12);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(115% 130% at 24% 18%, rgba(255, 255, 255, 0.95), rgba(207, 216, 227, 0) 62%),
    linear-gradient(135deg, #eef2f7 0%, #cbd5e1 75%);
}

.gliderview__art { height: clamp(220px, 30vw, 400px); }

.gliderview__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.7);
}

.gliderview__no {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  color: #6b7686;
}

.gliderview__body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  letter-spacing: 0.05em;
  color: var(--ink);
}

.glider { cursor: pointer; }

.glider[aria-pressed="true"] {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 10px;
}

.glider:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (max-width: 760px) {
  .gliderview { grid-template-columns: 1fr; }
}

.weaponview {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--panel-edge);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(115% 130% at 78% 22%, rgba(95, 217, 255, 0.24), rgba(7, 9, 13, 0) 60%),
    linear-gradient(225deg, #131a22 0%, #080a0e 70%);
}

.weaponview__art { height: clamp(240px, 32vw, 440px); }

.weaponview__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  transform: scale(0.75);
}

.weaponview__body h3 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 0.7rem;
}

.weaponview__body p { color: var(--muted); margin-bottom: 0.85rem; }

.weapon__data { display: none; }

.weapon { cursor: pointer; }

.weapon[aria-pressed="true"] {
  border-color: rgba(95, 217, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(95, 217, 255, 0.35), 0 16px 38px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 760px) {
  .weaponview { grid-template-columns: 1fr; }
}

.hero__cta { margin-top: 5.1rem; }

.wrap--narrow { max-width: 760px; }

.support { display: grid; gap: 0.9rem; margin-bottom: 1rem; }

.support__field { display: grid; gap: 0.35rem; }

.support__label {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.support input,
.support textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--panel-edge);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  font: inherit;
}

.support input:focus-visible,
.support textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.support button { justify-self: start; cursor: pointer; border: 1px solid rgba(102, 192, 244, 0.55); }

.support__direct { color: var(--muted); }
.support__direct a, .legal a { color: var(--gold-soft); }

.legal {
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  padding-top: clamp(1.2rem, 3vw, 1.8rem);
  border-top: 1px solid var(--panel-edge);
  color: var(--muted);
  font-size: 0.94rem;
}

.legal h3 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.legal address { font-style: normal; margin: 0.5rem 0 0.9rem; }

.footer__links { display: flex; gap: 1.4rem; justify-content: center; margin-bottom: 0.6rem; }
.footer__links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold-soft); }

.page { padding-top: clamp(6rem, 12vw, 8rem); }

@media (max-width: 899px) {
  .page { padding-top: 7.5rem; }
}

.page h1 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.page h2 {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 1.6rem 0 0.5rem;
}

.mail { color: var(--text); }

.page .legal { border-top: none; margin-top: 1.2rem; padding-top: 0; }

.support__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
  border: 1px solid var(--panel-edge);
  background: var(--panel);
}

.notice--ok { border-color: rgba(102, 192, 244, 0.55); }
.notice--bad { border-color: rgba(242, 182, 50, 0.55); }

.notice__code { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.08em; }

.legal__org { display: block; margin-bottom: 0.55rem; }
.legal__mail { display: block; margin-top: 0.55rem; }

.diag {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  overflow-x: auto;
}

.rank__totals { color: var(--gold-soft); }

.rank__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.8rem 0 1.2rem;
}

.rank__tab {
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rank__tab:hover { border-color: #2b3547; color: var(--text); }

.rank__tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.rank__board {
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;

  overflow-x: auto;
}

table.rank__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.rank__table th,
.rank__table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--panel-edge);
}

.rank__table th {
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.rank__table tr:last-child td { border-bottom: none; }

.rank__num { text-align: right; font-variant-numeric: tabular-nums; }

.rank__pos {
  width: 3.5rem;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--muted);
}

.rank__table tr:nth-child(2) td { background: rgba(242, 182, 50, 0.07); }
.rank__table tr:nth-child(2) .rank__pos { color: var(--gold); }
.rank__table tr:nth-child(3) .rank__pos,
.rank__table tr:nth-child(4) .rank__pos { color: #c3cad6; }

.rank__empty { padding: 1.6rem 1rem; color: var(--muted); }

.rank__stamp {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .rank__table th,
  .rank__table td { padding: 0.5rem 0.7rem; }
  .rank__pos { width: 2.6rem; }
}

.rank__kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0 1.6rem;
}

.kpi {
  padding: 1rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
}

.kpi__value {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}

.kpi__label {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.rank__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.rank__caption {
  padding: 0.85rem 1rem 0;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.rank__cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
}

.rank__track {
  flex: 0 1 clamp(40px, 38%, 220px);
  height: 0.55rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.rank__bar {
  display: block;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: var(--cyan);
  opacity: 0.72;
}

.rank__figure { flex: none; }

.rank__sorted { background: rgba(95, 217, 255, 0.05); }
th.rank__sorted { color: var(--cyan); }

.rank__share {
  padding: 1.1rem 1rem 1.2rem;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
  text-align: center;
}

.share__ring { width: 100%; max-width: 200px; height: auto; }

.rank__share figcaption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.share__legend {
  list-style: none;
  margin-top: 0.9rem;
  text-align: left;
  font-size: 0.85rem;
}

.share__legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.18rem 0;
}

.share__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 3px;
  flex: none;
}

.share__name {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
}

.share__pct { color: var(--muted); font-variant-numeric: tabular-nums; }

.rank__share { max-width: 320px; }

.share__hero {
  fill: var(--gold-soft);
  font-family: var(--display);
  font-size: 25px;
}

.share__heroSub {
  fill: var(--muted);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot { display: flex; align-items: center; gap: 0.6rem; }

.pilot__mark {
  position: relative;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--panel-edge);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 26px;
  text-align: center;
  overflow: hidden;
}

.pilot__avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pilot__avatar.is-on { opacity: 1; }

.legal__list {
  margin: 0.4rem 0 1.4rem 1.1rem;
  padding: 0;
}

.legal__list li {
  margin-bottom: 0.7rem;
  padding-left: 0.3rem;
  color: var(--muted);
}

.legal__list strong { color: var(--text); }

.community__players { color: var(--gold-soft); }

.community__subhead {
  margin: 1.6rem 0 0.9rem;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.9rem;
}

.feat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  background: var(--panel);
  border: 1px solid var(--panel-edge);
  border-radius: 10px;
}

.feat__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.feat__name {
  min-width: 0;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.feat__pct {
  margin-left: auto;
  flex: none;
  font-size: 0.8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 600px) {
  .feats { grid-template-columns: 1fr; }
}
