:root {
  --bg: #070907;
  --bg-soft: #0d120f;
  --panel: rgba(13, 18, 15, 0.78);
  --panel-solid: #111711;
  --text: #f3f6ef;
  --muted: #a8b2a6;
  --line: rgba(255, 255, 255, 0.12);
  --green: #08a65b;
  --green-2: #55e38d;
  --amber: #d4a33a;
  --red: #c44d3f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  --max: 1240px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(8, 166, 91, 0.14), transparent 26rem),
    radial-gradient(circle at 90% 30%, rgba(196, 77, 63, 0.1), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

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

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

button {
  font: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: #070907;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.loader-mark img {
  width: 44px;
  height: 44px;
}

.loader-line {
  width: min(260px, 72vw);
  height: 4px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  animation: load 1s ease-in-out infinite alternate;
}

@keyframes load {
  from { transform: translateX(-45%); }
  to { transform: translateX(190%); }
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(7, 9, 7, 0.66);
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}

.header-socials,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.header-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  opacity: .84;
  transition: transform .2s ease, opacity .2s ease;
}

.header-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header-socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.site-header.is-scrolled {
  min-height: 56px;
  background: rgba(7, 9, 7, 0.9);
  border-color: rgba(255,255,255,0.16);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  width: 34px;
  height: 34px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  transition: color .2s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(8, 166, 91, 0.25);
}

.donate-button {
  border-color: rgba(235, 193, 93, .58) !important;
  background: linear-gradient(135deg, #f4c764, #b17520) !important;
  color: #120d04 !important;
  box-shadow: 0 18px 38px rgba(214, 157, 50, .25);
}

.donate-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  max-width: 130px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(235, 193, 93, .58);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity .24s ease,
    transform .24s ease,
    max-width .24s ease,
    padding .24s ease,
    border-color .24s ease,
    box-shadow .24s ease;
}

.header-donate svg {
  width: 19px;
  height: 19px;
}

.header-donate.is-hidden {
  max-width: 0;
  padding-inline: 0;
  border-color: transparent !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(.96);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 20px 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/1575-01.jpg");
  background-size: cover;
  background-position: center right;
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(7,9,7,0.22), rgba(7,9,7,0.64) 46%, rgba(7,9,7,0.9) 82%),
    linear-gradient(90deg, rgba(7,9,7,0.9) 0%, rgba(7,9,7,0.58) 50%, rgba(7,9,7,0.9) 100%),
    linear-gradient(180deg, rgba(7,9,7,0.18) 0%, rgba(7,9,7,0.28) 58%, var(--bg) 100%);
}

.hero-marks {
  position: absolute;
  inset: 118px 20px 68px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
}

.hero-marks span {
  position: absolute;
  width: 58px;
  height: 58px;
  border-color: rgba(85, 227, 141, 0.36);
  animation: markPulse 3.8s ease-in-out infinite;
}

.hero-marks span:nth-child(1) { left: 7vw; top: 7vh; border-left: 1px solid; border-top: 1px solid; }
.hero-marks span:nth-child(2) { right: 7vw; top: 7vh; border-right: 1px solid; border-top: 1px solid; animation-delay: .25s; }
.hero-marks span:nth-child(3) { left: 7vw; bottom: 8vh; border-left: 1px solid; border-bottom: 1px solid; animation-delay: .5s; }
.hero-marks span:nth-child(4) { right: 7vw; bottom: 8vh; border-right: 1px solid; border-bottom: 1px solid; animation-delay: .75s; }

@keyframes markPulse {
  0%, 100% { opacity: .28; transform: scale(.98); }
  50% { opacity: .82; transform: scale(1.04); }
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.55fr);
  gap: 40px;
  align-items: center;
  width: min(100%, var(--max));
  min-height: calc(100svh - 118px);
  margin: 0 auto;
  padding-bottom: 72px;
}

.hero-inner.hero-centered {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
  text-align: center;
}

.hero-centered .hero-copy {
  display: grid;
  justify-items: center;
}

.hero-centered .status-row,
.hero-centered .hero-actions,
.hero-centered .quick-links {
  justify-content: center;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  color: #d6dfd2;
  font-size: 14px;
}

.status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.status-pill i {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green-2);
  box-shadow: 0 0 18px var(--green-2);
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(70px, 8vw, 142px);
  line-height: .9;
  font-weight: 950;
  white-space: nowrap;
  text-shadow: 0 22px 68px rgba(0,0,0,0.58);
}

.hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: #d9e1d7;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.hero-socials a {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  transition: transform .2s ease, filter .2s ease;
}

.hero-socials a:hover {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.08);
}

.hero-socials img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.header-cta:hover,
.donate-button:hover,
.quick-links a:hover,
.updates a:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #11c36e);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 166, 91, 0.28);
}

.button.secondary {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-links a {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  color: #cfd8cc;
  font-size: 14px;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.quick-links a:hover {
  border-color: rgba(85,227,141,0.55);
  color: #fff;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16,22,17,0.82), rgba(8,10,8,0.66));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.panel-top b {
  color: var(--green-2);
}

.panel-image {
  margin: 16px 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}

.panel-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transform: scale(1.02);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.panel-grid div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
}

.panel-grid b {
  display: block;
  margin-bottom: 5px;
}

.panel-grid span {
  color: var(--muted);
  font-size: 13px;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(7, 9, 7, 0.72);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  min-width: 100vw;
  justify-content: space-around;
}

.ticker span {
  display: block;
  padding: 14px 28px;
  color: #dce5d7;
  font-weight: 850;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 82px 20px;
}

.official-strip {
  width: min(calc(100% - 40px), var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 18px;
  margin: -34px auto 80px;
  padding: 20px;
  border: 1px solid rgba(85, 227, 141, .2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(85, 227, 141, .14), transparent 34%),
    rgba(12, 18, 14, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.official-strip span,
.official-strip b {
  color: #6cffaa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.official-strip h2 {
  margin: 8px 0 8px;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1;
}

.official-strip p {
  max-width: 820px;
  margin: 0;
  color: #c5d0c2;
}

.official-strip ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.official-strip li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
}

.official-strip a {
  color: #fff;
  font-weight: 850;
}

.section-title {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-bottom: 34px;
}

.section-title span,
.section-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(85,227,141,0.35);
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(8,166,91,0.12);
  font-size: 13px;
  font-weight: 800;
}

.section h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1;
}

.intro {
  padding-top: 96px;
}

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

.intro-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.intro-card:hover,
.feature-list div:hover,
.update-stack article:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(85,227,141,0.36);
}

.intro-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.intro-card div {
  padding: 18px;
}

.intro-card b {
  display: block;
  font-size: 20px;
}

.intro-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.command {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.command-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.command-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.command-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.feature-list div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  transition: transform .25s ease, border-color .25s ease;
}

.feature-list b {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
}

.feature-list span {
  color: var(--muted);
}

.arsenal {
  width: 100%;
  max-width: none;
  min-height: max(100svh, 720px);
  padding: 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 42%, rgba(85,227,141,0.16), transparent 28rem),
    radial-gradient(circle at 20% 70%, rgba(196,77,63,0.13), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    #0a0d0a;
}

.arsenal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 60% 42%, #000, transparent 70%);
  pointer-events: none;
}

.arsenal .section-title {
  position: absolute;
  z-index: 6;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 92px;
  max-width: 650px;
  margin: 0;
}

.arsenal .section-title h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.6vw, 64px);
  text-shadow: 0 20px 62px rgba(0,0,0,0.62);
}

.arsenal-shell {
  position: relative;
  min-height: max(100svh, 720px);
  padding: 0;
}

.arsenal-preview {
  position: absolute;
  inset: 0;
  display: block;
  min-height: max(100svh, 720px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.arsenal-stage {
  position: relative;
  width: 100%;
  min-height: max(100svh, 720px);
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 66% 44%, rgba(85,227,141,0.18), transparent 38%),
    linear-gradient(90deg, rgba(7,9,7,0.92) 0%, rgba(7,9,7,0.48) 46%, rgba(7,9,7,0.82) 100%);
  mask-image: none;
}

.arsenal-canvas {
  width: 100%;
  height: max(100svh, 720px);
  min-height: max(100svh, 720px);
  display: block;
  cursor: grab;
  outline: none;
  touch-action: none;
}

.arsenal-canvas:active {
  cursor: grabbing;
}

.arsenal-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(7,9,7,0.76);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.arsenal-loading.is-hidden {
  display: none;
}

.arsenal-pivot-dot {
  position: fixed;
  z-index: 45;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--green-2);
  box-shadow:
    0 0 0 8px rgba(85,227,141,0.18),
    0 0 28px rgba(85,227,141,0.85);
  cursor: grab;
  transform: translate(-50%, -50%);
}

.arsenal-pivot-dot:active {
  cursor: grabbing;
}

.arsenal-pivot-dot.is-armed {
  background: var(--amber);
  box-shadow:
    0 0 0 10px rgba(212,163,58,0.22),
    0 0 34px rgba(212,163,58,0.9);
}

.arsenal-arrow {
  position: absolute;
  top: 48%;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 54px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(7,9,7,0.68);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  backdrop-filter: blur(12px);
}

.arsenal-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arsenal-arrow:hover {
  border-color: rgba(85,227,141,0.45);
  background: rgba(8,166,91,0.18);
  transform: translateY(-50%) scale(1.04);
}

.arsenal-arrow.prev {
  left: max(20px, calc((100vw - var(--max)) / 2 - 46px));
}

.arsenal-arrow.next {
  right: max(20px, calc((100vw - var(--max)) / 2 - 46px));
}

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

.arsenal-details {
  position: absolute;
  z-index: 7;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  bottom: clamp(214px, 25vh, 248px);
  width: min(440px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13,18,15,0.86), rgba(13,18,15,0.56));
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
  animation: panelSlide .7s ease both;
  transition: translate .32s ease;
  translate: 0 18px;
}

@keyframes panelSlide {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.arsenal-details span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(85,227,141,0.35);
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(8,166,91,0.12);
  font-size: 12px;
  font-weight: 850;
}

.arsenal-details h3 {
  margin: 9px 0 6px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: .95;
}

.arsenal-details p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
}

.arsenal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.arsenal-meta b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: #dbe4d7;
  font-size: 11px;
  font-weight: 850;
}

.arsenal-edit-toggle {
  position: fixed;
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 88px;
  z-index: 42;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(85,227,141,0.4);
  border-radius: 8px;
  background: rgba(8,166,91,0.16);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.arsenal-edit-toggle.is-active {
  background: var(--green);
}

.arsenal-editor {
  position: fixed;
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 132px;
  z-index: 42;
  width: min(360px, calc(100vw - 40px));
  max-height: calc(100svh - 210px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(7,9,7,0.88);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
}

.arsenal-editor-grid {
  display: grid;
  gap: 9px;
}

.arsenal-editor label {
  display: grid;
  gap: 5px;
  color: #dfe7dc;
  font-size: 12px;
  font-weight: 850;
}

.arsenal-editor input[type="range"] {
  width: 100%;
  accent-color: var(--green-2);
}

.arsenal-editor pre {
  margin: 12px 0 0;
  max-height: 170px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(0,0,0,0.28);
  color: #b9ffcf;
  font-size: 11px;
  white-space: pre-wrap;
}

.arsenal-editor-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.arsenal-editor-actions button {
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
}

.arsenal-browser {
  position: absolute;
  z-index: 7;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  bottom: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  height: 198px;
  overflow: hidden;
}

.arsenal:has(.arsenal-browser:hover) .arsenal-details {
  translate: 0 -18px;
}

.arsenal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.arsenal-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  user-select: none;
  touch-action: none;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.arsenal-tabs button:hover,
.arsenal-tabs button.is-active {
  transform: translateY(-2px);
  border-color: rgba(85,227,141,0.44);
  background: rgba(8,166,91,0.16);
  color: #fff;
}

.arsenal-grid,
.arsenal-tabs {
  transition: transform .28s ease, opacity .24s ease;
}

.arsenal-browser:not(:hover) .arsenal-grid {
  opacity: 0;
  pointer-events: none;
  transform: translateY(150px);
}

.arsenal-browser:not(:hover) .arsenal-tabs {
  opacity: .72;
  transform: translateY(150px);
}

.arsenal-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 176px;
  grid-template-columns: none;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(85,227,141,0.6) rgba(255,255,255,0.06);
}

.weapon-card {
  position: relative;
  display: grid;
  grid-template-rows: 60px auto;
  min-height: 118px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(13,18,15,0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  user-select: none;
  touch-action: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.weapon-card img {
  -webkit-user-drag: none;
  user-select: none;
}

.weapon-card:hover,
.weapon-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(85,227,141,0.46);
  background: rgba(8,166,91,0.12);
}

.weapon-card,
.arsenal-tabs button {
  cursor: grab;
}

.weapon-card.is-dragging,
.arsenal-tabs button.is-dragging {
  opacity: .45;
  cursor: grabbing;
}

.weapon-card-media {
  display: grid;
  place-items: center;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    rgba(0,0,0,0.2);
}

.weapon-card-media img {
  width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 15px 24px rgba(0,0,0,0.5));
}

.weapon-card-body {
  padding: 9px 10px 10px;
}

.weapon-card-body small {
  display: block;
  margin-bottom: 6px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 850;
}

.weapon-card-body b {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
}

.weapon-card-body span {
  display: none;
}

.archive {
  padding-top: 72px;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: minmax(330px, auto);
  gap: 14px;
}

.archive-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  transition: transform .25s ease, border-color .25s ease;
}

.archive-card.large {
  grid-row: span 2;
  min-height: 674px;
}

.archive-card:hover,
.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(85,227,141,0.38);
}

.archive-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.archive-card:hover img {
  transform: scale(1.07);
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,7,0.05) 0%, rgba(7,9,7,0.42) 46%, rgba(7,9,7,0.92) 100%),
    linear-gradient(90deg, rgba(7,9,7,0.5), transparent 70%);
}

.archive-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.archive-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}

.archive-card p {
  margin: 10px 0 15px;
  color: #d3dbd0;
}

.garage {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-height: max(100svh, 720px);
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 66% 42%, rgba(85,227,141,0.16), transparent 28rem),
    radial-gradient(circle at 20% 70%, rgba(196,77,63,0.11), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    #0a0d0a;
}

.garage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 60% 42%, #000, transparent 70%);
  pointer-events: none;
}

.garage .section-title {
  position: absolute;
  z-index: 6;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 92px;
  max-width: 650px;
  margin: 0;
}

.garage .section-title h2 {
  max-width: 650px;
  font-size: clamp(40px, 4.6vw, 64px);
  text-shadow: 0 20px 62px rgba(0,0,0,0.62);
}

.garage-stage {
  position: absolute;
  inset: 0;
  min-height: max(100svh, 720px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 66% 44%, rgba(85,227,141,0.18), transparent 38%),
    linear-gradient(90deg, rgba(7,9,7,0.92) 0%, rgba(7,9,7,0.48) 46%, rgba(7,9,7,0.82) 100%);
}

.garage-canvas {
  width: 100%;
  height: max(100svh, 720px);
  min-height: max(100svh, 720px);
  display: block;
  cursor: grab;
  outline: none;
  touch-action: none;
}

.garage-canvas:active {
  cursor: grabbing;
}

.garage-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 84px),
    linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  opacity: 0.75;
  pointer-events: none;
}

.garage-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--muted);
  font-weight: 800;
}

.garage-loader.is-hidden {
  display: none;
}

.garage-copy {
  position: absolute;
  z-index: 7;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  bottom: clamp(170px, 20vh, 204px);
  width: min(440px, calc(100vw - 40px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(13,18,15,0.84), rgba(13,18,15,0.52));
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
  animation: panelSlide .7s ease both;
  transition: translate .32s ease;
  translate: 0 18px;
}

.garage-copy > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(85,227,141,0.35);
  border-radius: 8px;
  color: var(--green-2);
  background: rgba(8,166,91,0.12);
  font-size: 12px;
  font-weight: 850;
}

.garage-copy h2 {
  margin: 9px 0 6px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: .95;
}

.garage-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.garage-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.garage-stats b {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: #dbe4d7;
  font-size: 11px;
  font-weight: 850;
}

.garage-edit-toggle {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 78px;
  z-index: 12;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(85,227,141,0.4);
  border-radius: 8px;
  background: rgba(8,166,91,0.16);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.garage-edit-toggle.is-active {
  background: var(--green);
}

.garage-editor {
  position: absolute;
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  top: 122px;
  z-index: 12;
  width: min(360px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(7,9,7,0.88);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
}

.garage-editor p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.garage-editor pre {
  margin: 0;
  max-height: 180px;
  overflow: auto;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 8px;
  background: rgba(0,0,0,0.32);
  color: #dfffe9;
  font-size: 11px;
  line-height: 1.45;
}

.garage-arrow {
  position: absolute;
  z-index: 8;
  top: 48%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  backdrop-filter: blur(10px);
}

.garage-arrow:hover {
  border-color: rgba(85,227,141,0.45);
  background: rgba(8,166,91,0.18);
  transform: translateY(-50%) scale(1.04);
}

.garage-arrow.prev {
  left: max(20px, calc((100vw - var(--max)) / 2 - 46px));
}

.garage-arrow.next {
  right: max(20px, calc((100vw - var(--max)) / 2 - 46px));
}

.garage-arrow svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.garage-browser {
  position: absolute;
  z-index: 7;
  left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  bottom: 18px;
  display: grid;
  gap: 8px;
  transform: translateY(126px);
  transition: transform .32s ease;
}

.garage-browser:hover,
.garage-browser:focus-within {
  transform: translateY(0);
}

.garage:has(.garage-browser:hover) .garage-copy,
.garage:has(.garage-browser:focus-within) .garage-copy {
  translate: 0 -18px;
}

.garage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.garage-tabs button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.055);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}

.garage-tabs button:hover,
.garage-tabs button.is-active {
  transform: translateY(-2px);
  border-color: rgba(85,227,141,0.44);
  background: rgba(8,166,91,0.16);
  color: #fff;
}

.garage-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 176px;
  gap: 8px;
  overflow-x: auto;
  padding: 3px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(85,227,141,0.6) rgba(255,255,255,0.06);
}

.garage-grid,
.garage-tabs {
  transition: transform .32s ease, opacity .32s ease;
}

.garage-browser:not(:hover):not(:focus-within) .garage-grid {
  opacity: .2;
  pointer-events: none;
  transform: translateY(18px);
}

.garage-browser:not(:hover):not(:focus-within) .garage-tabs {
  transform: translateY(-2px);
}

.garage-card {
  min-height: 116px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(13,18,15,0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.garage-card:hover,
.garage-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(85,227,141,0.46);
  background: rgba(8,166,91,0.12);
}

.garage-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 850;
}

.garage-card b {
  display: block;
  font-size: 20px;
}

.garage-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.systems {
  padding-top: 36px;
}

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

.system-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  transition: transform .25s ease, border-color .25s ease;
}

.system-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.system-card div {
  padding: 18px;
}

.system-card b {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
}

.system-card span {
  color: var(--muted);
}

.updates {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    #0a0d0a;
}

.updates-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .75fr);
  gap: 18px;
}

.update-main,
.update-stack article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}

.update-main img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.update-main div {
  padding: 24px;
}

time {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
}

.updates h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.13;
}

.updates p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.updates a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(8,166,91,0.14);
  color: var(--green-2);
  font-weight: 850;
  transition: transform .2s ease;
}

.update-stack {
  display: grid;
  gap: 12px;
}

.update-stack article {
  padding: 20px;
  transition: transform .25s ease, border-color .25s ease;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
  transition: transform .25s ease, border-color .25s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(7,9,7,0.72);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.gallery-item > span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  min-height: 34px;
  padding: 5px 10px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.supporters {
  position: relative;
  padding-top: 92px;
  padding-bottom: 84px;
  overflow: hidden;
}

.supporters::before {
  content: "";
  position: absolute;
  inset: 10% 0 0;
  z-index: -1;
  background:
    linear-gradient(rgba(49, 211, 113, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 211, 113, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
}

.supporters-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.supporters-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: .94;
}

.supporters-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.supporter-card {
  position: relative;
  min-width: 0;
  min-height: 322px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 29, 25, .88), rgba(8, 11, 9, .97)),
    rgba(255, 255, 255, .03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.supporter-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(77, 229, 137, .48);
  box-shadow: 0 28px 64px rgba(0, 0, 0, .34);
}

.supporter-card[data-rank="1"] {
  min-height: 358px;
  border-color: rgba(240, 191, 73, .58);
  background:
    radial-gradient(circle at 50% 30%, rgba(240, 191, 73, .15), transparent 48%),
    linear-gradient(180deg, rgba(28, 31, 23, .9), rgba(9, 12, 9, .98));
}

.supporter-card[data-rank="2"],
.supporter-card[data-rank="3"] {
  min-height: 334px;
}

.supporter-card[data-rank="2"] .supporter-avatar,
.supporter-card[data-rank="3"] .supporter-avatar {
  height: 254px;
}

.supporter-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(91, 227, 145, .34);
  border-radius: 999px;
  color: #72ef9f;
  background: rgba(4, 13, 8, .75);
  font-size: 12px;
  font-weight: 850;
}

.supporter-card[data-rank="1"] .supporter-rank {
  border-color: rgba(240, 191, 73, .55);
  color: #f2c75d;
}

.supporter-avatar {
  position: relative;
  height: 242px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(53, 218, 119, .18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.supporter-card[data-rank="1"] .supporter-avatar {
  height: 278px;
  background:
    radial-gradient(circle at 50% 70%, rgba(240, 191, 73, .2), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent);
}

.supporter-avatar::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 8px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .56);
  filter: blur(9px);
}

.supporter-avatar img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 218px;
  max-width: 92%;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, .55));
  animation: supporter-idle 4.8s ease-in-out infinite;
}

.supporter-card[data-rank="1"] .supporter-avatar img {
  height: 252px;
}

.supporter-info {
  position: relative;
  z-index: 2;
  min-height: 108px;
  margin-top: -66px;
  padding: 17px 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  background: rgba(5, 8, 6, .78);
  backdrop-filter: blur(12px);
}

.supporter-name {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supporter-place {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.supporter-amount {
  display: block;
  margin-top: 9px;
  color: #71eda0;
  font-size: 20px;
  font-weight: 900;
}

.supporter-card[data-rank="1"] .supporter-amount {
  color: #f2c75d;
}

.supporters-note {
  margin: 18px 0 0;
  color: rgba(218, 225, 220, .55);
  font-size: 12px;
  text-align: center;
}

.supporter-card.is-loading {
  min-height: 322px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .025) 20%, rgba(255, 255, 255, .075) 38%, rgba(255, 255, 255, .025) 56%),
    rgba(255, 255, 255, .025);
  background-size: 240% 100%;
  animation: supporter-loading 1.6s linear infinite;
}

@keyframes supporter-idle {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

@keyframes supporter-loading {
  to { background-position: -240% 0; }
}

@media (max-width: 980px) {
  .supporters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .supporter-card:nth-child(n+4) {
    min-height: 322px;
  }
}

@media (max-width: 620px) {
  .supporters {
    padding-top: 70px;
    padding-left: 0;
    padding-right: 0;
  }

  .supporters-heading,
  .supporters-note {
    padding-left: 14px;
    padding-right: 14px;
  }

  .supporters-heading {
    margin-bottom: 26px;
    text-align: left;
  }

  .supporters-heading h2 {
    font-size: 44px;
  }

  .supporters-heading p {
    font-size: 15px;
  }

  .supporters-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(214px, 72vw);
    align-items: end;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 14px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .supporters-grid::-webkit-scrollbar {
    display: none;
  }

  .supporter-card,
  .supporter-card:nth-child(n+4) {
    min-height: 316px;
    scroll-snap-align: center;
  }

  .supporter-card[data-rank="1"] {
    min-height: 352px;
  }

  .supporter-card[data-rank="2"],
  .supporter-card[data-rank="3"] {
    min-height: 328px;
  }
}

.download {
  padding-top: 70px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(85,227,141,0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8,166,91,0.18), rgba(196,77,63,0.08)),
    rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.download-card p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.download-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.seo-faq {
  padding-top: 46px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid details {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}

.faq-grid summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px 20px 46px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}

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

.footer-links a:hover {
  color: white;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0,0,0,0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin: 14px 0 0;
  color: white;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.download-modal[hidden] {
  display: none;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(12px);
}

.download-modal-card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(8,12,9,.98);
  box-shadow: 0 30px 90px rgba(0,0,0,.62);
  animation: modal-in .24s ease both;
}

.download-guide,
.download-choices {
  padding: 34px;
}

.download-guide {
  border-right: 1px solid rgba(255,255,255,.1);
}

.download-guide > span,
.download-choices > span {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-guide h2 {
  margin: 12px 0 22px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: .96;
}

.download-guide ol {
  display: grid;
  gap: 13px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.download-guide li p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.support-button,
.download-choice {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.support-button {
  width: max-content;
  padding: 0 18px;
  background: rgba(8,166,91,.16);
  font-weight: 900;
}

.download-choices {
  display: grid;
  align-content: center;
  gap: 12px;
}

.download-choice {
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.download-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(85,227,141,.42);
  background: rgba(8,166,91,.12);
}

.download-choice.primary {
  border-color: rgba(85,227,141,.42);
  background: rgba(8,166,91,.14);
}

.download-choice-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}

.download-choice-icon svg,
.download-choice-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.download-choice-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.download-choice-copy b {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 16px;
  line-height: 1.15;
}

.download-choice-copy b em {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--green-2);
  color: #06110a;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.download-choice small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.3;
}

.download-choice-arrow {
  font-size: 30px;
  line-height: 1;
  opacity: .72;
  transition: transform .2s ease, opacity .2s ease;
}

.download-choice:hover .download-choice-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.download-choice-google {
  border-color: rgba(66,133,244,.46);
  background: linear-gradient(100deg, rgba(66,133,244,.16), rgba(8,166,91,.08));
}

.download-choice-google:hover {
  border-color: rgba(66,133,244,.72);
  background: linear-gradient(100deg, rgba(66,133,244,.24), rgba(8,166,91,.12));
}

.download-choice-dropbox:hover {
  border-color: rgba(22,131,255,.58);
  background: rgba(22,131,255,.12);
}

.google-drive-icon,
.dropbox-icon {
  background: #fff;
}

.download-community-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 -2px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-community-label::before,
.download-community-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.12);
}

.social-choice {
  color: #fff;
}

.social-choice small {
  color: rgba(255,255,255,.82);
}

.telegram-choice {
  border-color: rgba(77,189,235,.7);
  background: linear-gradient(135deg, #168cc7, #2aabee);
  box-shadow: 0 12px 28px rgba(42,171,238,.14);
}

.telegram-choice:hover {
  border-color: #79d2fa;
  background: linear-gradient(135deg, #1498d8, #35b8f7);
  box-shadow: 0 16px 34px rgba(42,171,238,.24);
}

.discord-choice {
  border-color: rgba(145,154,255,.7);
  background: linear-gradient(135deg, #4652c9, #5865f2);
  box-shadow: 0 12px 28px rgba(88,101,242,.14);
}

.discord-choice:hover {
  border-color: #aeb5ff;
  background: linear-gradient(135deg, #515fdd, #6773ff);
  box-shadow: 0 16px 34px rgba(88,101,242,.24);
}

.download-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
  }

  .hero-inner,
  .command,
  .updates-layout,
  .arsenal-shell,
  .download-card,
  .official-strip {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: calc(100svh - 112px);
  }

  .hero-panel {
    min-height: auto;
  }

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

  .archive-grid,
  .systems-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arsenal-preview {
    position: absolute;
    top: auto;
    min-height: 100svh;
  }

  .arsenal-grid {
    grid-template-columns: none;
    grid-auto-columns: 180px;
  }

  .garage-grid {
    grid-template-columns: none;
    grid-auto-columns: 180px;
  }

  .archive-card.large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 430px;
  }

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

  .download-actions {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .download-modal {
    padding: 12px;
  }

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

  .download-guide,
  .download-choices {
    padding: 24px;
  }

  .download-guide {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .download-choice {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 11px;
    min-height: 72px;
    padding: 10px 12px;
  }

  .download-choice-icon {
    width: 44px;
    height: 44px;
  }

  .download-choice-icon svg,
  .download-choice-icon img {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
    padding-left: 12px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .header-socials {
    gap: 4px;
  }

  .header-socials a {
    width: 30px;
    height: 30px;
  }

  .header-donate {
    min-height: 40px;
    padding: 0 10px;
  }

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

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .panel-grid,
  .gallery,
  .archive-grid,
  .systems-grid,
  .arsenal-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .official-strip {
    width: calc(100% - 28px);
    margin-top: -24px;
    margin-bottom: 34px;
    padding: 16px;
  }

  .official-strip li {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px;
  }

  .arsenal {
    min-height: max(100svh, 760px);
    padding-left: 0;
    padding-right: 0;
  }

  .garage {
    min-height: max(100svh, 760px);
    padding-left: 0;
    padding-right: 0;
  }

  .arsenal-preview {
    min-height: max(100svh, 760px);
  }

  .arsenal-stage {
    min-height: max(100svh, 760px);
    padding: 0;
  }

  .garage-stage {
    min-height: max(100svh, 760px);
    padding: 0;
  }

  .arsenal-canvas {
    height: max(100svh, 760px);
    min-height: max(100svh, 760px);
  }

  .garage-canvas {
    height: max(100svh, 760px);
    min-height: max(100svh, 760px);
  }

  .arsenal-arrow {
    width: 42px;
    height: 56px;
    font-size: 38px;
  }

  .garage-arrow {
    width: 42px;
    height: 56px;
  }

  .arsenal-details {
    left: 14px;
    right: auto;
    bottom: 200px;
    width: min(265px, calc(100vw - 28px));
    padding: 11px 12px;
  }

  .garage-copy {
    left: 14px;
    right: 14px;
    bottom: 204px;
    width: auto;
    padding: 18px;
  }

  .arsenal-details h3 {
    margin: 6px 0 4px;
    font-size: clamp(28px, 10vw, 38px);
  }

  .garage-copy h2 {
    font-size: 40px;
  }

  .arsenal-details p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .arsenal-meta {
    margin-top: 7px;
  }

  .arsenal-meta b:nth-child(n+3) {
    display: none;
  }

  .garage-copy p {
    font-size: 15px;
  }

  .weapon-card {
    grid-template-rows: 66px auto;
    min-height: 132px;
  }

  .arsenal .section-title {
    left: 14px;
    right: 14px;
    top: 82px;
  }

  .garage .section-title {
    left: 14px;
    right: 14px;
    top: 82px;
  }

  .arsenal-browser {
    left: 14px;
    right: 14px;
    bottom: 20px;
  }

  .garage-browser {
    left: 14px;
    right: 14px;
    bottom: 20px;
  }

  .arsenal-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .garage-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .arsenal-tabs button {
    flex: 0 0 auto;
  }

  .garage-tabs button {
    flex: 0 0 auto;
  }

  .arsenal-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(148px, 62vw);
  }

  .garage-grid {
    grid-template-columns: none;
    grid-auto-columns: minmax(148px, 62vw);
  }

  .archive-card.large {
    grid-column: auto;
    min-height: 360px;
  }

  .archive-card {
    min-height: 340px;
  }

  .gallery {
    grid-auto-rows: 220px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .section {
    padding: 72px 14px;
  }

  .section-title {
    display: block;
  }

  .command-visual img,
  .update-main img {
    min-height: 0;
    height: 300px;
  }

  .download-card {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
