:root {
  --cyan: #00e5ff;
  --cyan2: #00b8d4;
  --bg: #05070d;
  --surface: #0a0e17;
  --surface2: #0f141e;
  --border: #1a2333;
  --text: #e6f1ff;
  --muted: #8a94a6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #05070d;
}

::-webkit-scrollbar-thumb {
  background: var(--cyan2);
  border-radius: 6px;
  border: 2px solid #05070d;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

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

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

button {
  font: inherit;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-color: #05070d;
  background-image:
    repeating-linear-gradient(0deg, #0e131f 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, #0e131f 0 1px, transparent 1px 48px);
  opacity: 0.4;
  animation: gridMove 80s linear infinite;
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #05070d 85%);
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(0, 229, 255, 0.06) 0 1px, transparent 1px 3px);
  opacity: 0.035;
  mix-blend-mode: screen;
  animation: scan 8s linear infinite;
}

@keyframes gridMove {
  to {
    transform: translate(48px, 48px);
  }
}

@keyframes scan {
  to {
    transform: translateY(3px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

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

.section-sub {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: -24px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: #dffcff;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  transform: translateY(-1px);
  border-color: var(--cyan);
}

.btn .material-symbols-outlined {
  font-size: 18px;
}

.btn-mini {
  padding: 8px 14px;
  font-size: 11px;
  border-radius: 5px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 7, 13, 0.65);
  border-bottom: 1px solid rgba(26, 35, 51, 0.7);
}

.nav-inner {
  width: 100%;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
  color: #e6f1ff;
}

.nav-ctas {
  display: flex;
  gap: 10px;
}

.hero {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: min(900px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 7, 13, 0.16) 0%, rgba(5, 7, 13, 0.54) 48%, rgba(5, 7, 13, 0.9) 100%);
  z-index: 2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.42), rgba(5, 7, 13, 0.22) 35%, rgba(5, 7, 13, 0.72) 100%);
  z-index: 2;
}

.hero-clip {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  opacity: 0.34;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.03);
}

.hero .mono {
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  text-align: center;
  border: 1px solid rgba(138, 148, 166, 0.24);
  border-radius: 999px;
  background: rgba(9, 13, 22, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.hero-logo-wrap {
  position: relative;
  width: min(520px, 85vw);
  margin: 0 auto 22px;
  display: block;
  isolation: isolate;
}

.hero-logo {
  width: 100%;
  margin: 0;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.2));
}

.tagline {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #c8d5e6;
  margin-bottom: 32px;
  font-weight: 400;
}

.discord-float {
  position: absolute;
  top: clamp(100px, 16vh, 174px);
  right: clamp(-64px, -2vw, -40px);
  z-index: 3;
  display: grid;
  justify-items: end;
  gap: 10px;
  animation: discordFloat 3.2s ease-in-out infinite;
}

.discord-bubble {
  position: relative;
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  background: rgba(238, 246, 255, 0.97);
  color: #07101d;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.discord-bubble::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(238, 246, 255, 0.97);
  transform: rotate(45deg);
  border-radius: 2px;
}

.discord-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #effbff;
  background: rgba(13, 20, 35, 0.94);
  border: 1px solid rgba(0, 229, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.08) inset,
    0 0 24px rgba(0, 229, 255, 0.14);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.discord-float:hover {
  animation-play-state: paused;
}

.discord-float:hover .discord-float-btn {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(15, 25, 42, 0.98);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.12) inset,
    0 0 30px rgba(0, 229, 255, 0.22);
}

.discord-float-btn .material-symbols-outlined {
  font-size: 18px;
}

@keyframes discordFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.co-dev {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  text-align: center;
}

.co-dev a {
  color: #dfeeff;
  border-bottom: 1px solid rgba(0, 229, 255, 0.22);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.co-dev a:hover {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.5);
}

.bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--cyan);
  opacity: 0.5;
  pointer-events: none;
}

.bracket.tl {
  top: 40px;
  left: 40px;
  border-right: 0;
  border-bottom: 0;
}

.bracket.tr {
  top: 40px;
  right: 40px;
  border-left: 0;
  border-bottom: 0;
}

.bracket.bl {
  bottom: 40px;
  left: 40px;
  border-right: 0;
  border-top: 0;
}

.bracket.br {
  bottom: 40px;
  right: 40px;
  border-left: 0;
  border-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.about p {
  font-size: 18px;
  color: #c3cfdf;
  max-width: 62ch;
}

.stats {
  display: grid;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: 0.2s ease;
}

.stat:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

.stat span {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat strong {
  font-family: "JetBrains Mono", monospace;
  color: var(--cyan);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px 24px;
  position: relative;
  transition: 0.2s ease;
}

.card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(0, 229, 255, 0.12),
    0 0 0 1px rgba(0, 229, 255, 0.2) inset;
}

.card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--cyan);
  opacity: 0.85;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: rgba(0, 229, 255, 0.06);
}

.card-icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--cyan);
}

.card .mono {
  font-size: 11px;
  margin-bottom: 10px;
  display: block;
}

.card h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.card p {
  color: #a8b4c6;
  font-size: 14px;
  line-height: 1.5;
}

#screenshots .section-title::after,
#trailer .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

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

.shot {
  appearance: none;
  padding: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout paint;
  cursor: pointer;
}

.shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.02), rgba(5, 7, 13, 0.12) 65%, rgba(5, 7, 13, 0.34) 100%);
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

.shot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.28s ease, filter 0.28s ease;
  will-change: transform;
}

.shot:hover {
  border-color: var(--cyan);
  transform: scale(1.015);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.shot:hover .shot-image {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.03);
}

.shot-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.72);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: #dffcff;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shot .corn {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 3;
}

.shot:hover .corn {
  opacity: 0.8;
}

.c1 {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}

.c2 {
  top: 8px;
  right: 8px;
  border-left: 0;
  border-bottom: 0;
}

.c3 {
  bottom: 8px;
  left: 8px;
  border-right: 0;
  border-top: 0;
}

.c4 {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}

.trailer-wrap {
  width: 100%;
  text-align: center;
}

.video {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: radial-gradient(ellipse at center, #0b101c 0%, #05070d 70%);
  border: 1px solid var(--border);
  border-radius: 10px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 48px, #0e131f 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, #0e131f 48px 49px);
  opacity: 0.2;
}

.trailer-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

.play {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout paint;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4px);
  color: var(--cyan);
}

.play:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.play::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  opacity: 0.3;
  animation: pulse 2.4s ease-out infinite;
}

.play-icon {
  font-size: 42px;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  70% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.caption {
  margin-top: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}

.h-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.h-scroll::-webkit-scrollbar {
  height: 8px;
}

.h-scroll::-webkit-scrollbar-thumb {
  background: var(--cyan2);
  border-radius: 4px;
}

.op {
  flex: 0 0 160px;
  width: 160px;
  height: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout paint;
}

.op:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.18);
  transform: translateY(-2px);
}

.op .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 3;
}

.sil {
  height: 160px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 255, 0.08), rgba(8, 11, 19, 0.96) 70%);
  border-bottom: 1px solid var(--border);
  position: relative;
  padding: 8px;
  overflow: hidden;
}

.op .name {
  min-height: 52px;
  padding: 10px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dfeaff;
  border-top: 1px solid rgba(26, 35, 51, 0.85);
  background: linear-gradient(180deg, rgba(8, 12, 19, 0.72), rgba(8, 12, 19, 0.92));
}

.weapons .weapon {
  flex: 0 0 148px;
  width: 148px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout paint;
  scroll-snap-align: start;
}

.weapons .weapon:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

.w-icon {
  height: 84px;
  display: grid;
  place-items: center;
  position: relative;
  background-image: repeating-linear-gradient(45deg, rgba(0, 229, 255, 0.05) 0 6px, transparent 6px 12px);
  background-color: #0b0f18;
  border-bottom: 1px solid var(--border);
  padding: 8px 10px 6px;
  overflow: hidden;
}

.w-label {
  min-height: 52px;
  padding: 10px 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dfeaff;
  border-top: 1px solid rgba(26, 35, 51, 0.85);
  background: linear-gradient(180deg, rgba(8, 12, 19, 0.72), rgba(8, 12, 19, 0.92));
}

.progress {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(6px);
  padding: 18px 24px;
  margin: 20px 0;
  text-align: center;
}

.progress-inner {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: #9fb0c5;
}

.progress-inner span {
  color: var(--cyan);
  margin: 0 10px;
}

#cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 24px;
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 13, 0.48), rgba(5, 7, 13, 0.22) 42%, rgba(5, 7, 13, 0.68) 100%);
  z-index: 2;
}

.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.12) 0%, rgba(5, 7, 13, 0.02) 46%, rgba(5, 7, 13, 0.18) 100%);
  z-index: 2;
}

.cta-backdrop {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.38;
  filter: saturate(1.1) contrast(1.05) brightness(1.02);
  transform: scale(1.03);
}

#cta .container {
  position: relative;
  z-index: 2;
}

#cta .section-title {
  margin-bottom: 16px;
}

.cta-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.8);
  backdrop-filter: blur(8px);
  padding: 24px 0;
}

.foot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.foot-center {
  text-align: center;
  font-family: "Inter", sans-serif;
  letter-spacing: 2px;
}

.foot-right {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.foot-right a {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
  contain: layout paint;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.foot-right a:hover {
  color: var(--cyan);
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

@media (max-width: 640px) {
  .bracket {
    display: none;
  }

  .discord-float {
    position: static;
    margin: 0 auto 24px;
    justify-items: center;
    animation: none;
  }

  .discord-bubble::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .hero-clip {
    opacity: 0.24;
    object-position: center top;
  }

  .nav-ctas .btn-mini span:last-child {
    display: none;
  }

  .features-grid,
  .shots {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .foot {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .foot-right {
    justify-content: center;
  }

  .cta-backdrop {
    opacity: 0.28;
    object-position: center center;
  }
}
















.op-image {
  width: 144px;
  height: 144px;
  max-width: none;
  max-height: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.08));
}

.weapon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.08));
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 7, 13, 0.82);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: calc(100vh - 64px);
  display: grid;
  gap: 14px;
}

.lightbox-image {
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  background: rgba(9, 13, 22, 0.96);
}

.lightbox-caption {
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(9, 13, 22, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: #dffcff;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.38);
  background: rgba(9, 13, 22, 0.86);
  color: #effbff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-1px);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.22);
}

@media (max-width: 640px) {
  .lightbox {
    padding: 18px;
  }

  .lightbox-dialog {
    gap: 10px;
  }

  .lightbox-image {
    max-height: calc(100vh - 96px);
  }

  .lightbox-caption {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
}




