@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Variables */
:root {
  --black:       #080a0c;
  --bg:          #0e1214;
  --bg2:         #141a1e;
  --bg3:         #1a2228;
  --accent:      #03e0a3;
  --accent1:     rgba(3, 224, 163, 0.12);
  --accent2:     rgba(3, 224, 163, 0.25);
  --red:         #ff3c3c;
  --text:        #e2e8ee;
  --muted:       #7a8a96;
  --border:      rgba(255,255,255,0.07);
  --radius:      12px;
  --radius-lg:   20px;
  --font-h:  'Inter', 'Source Sans Pro', sans-serif;
  --font-b:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ─── Utility ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }

.tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.25rem 0.8rem;
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 4px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 0;
  text-decoration: none;
}

.btn-ghost {
  padding: 0.5rem 1.2rem;
  color: var(--text-muted);
  background: transparent;
}

.btn-ghost:hover { color: #fff; }

.btn-primary {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #0a1410;
}

.btn-primary:hover {
  background: #05f5b4;
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(14, 18, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #dbdbdb;
  white-space: nowrap;
  border: 0;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  text-align: center;
}

.navbar-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  border: 0;
  text-align: center;
}

.navbar-links a:hover { color: #fff; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 0;
  text-decoration: none;
}

/* ── Mobile hamburger ────────────────────────────────────── */
.navbar-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-size: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.25s;
  border: 0;
  text-decoration: none;
}

.btn-ghost {
  padding: 0.5rem 1.2rem;
  color: var(--muted);
  background: transparent;
}

.btn-ghost:hover { color: #fff; }

.btn-primary {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #0a1410;
}

.btn-primary:hover {
  background: #05f5b4;
  box-shadow: 0 0 20px var(--accent2);
}


/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

/* banner.jpg behind everything */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../../images/banner.jpg') center center / cover no-repeat;
  opacity: 0.22;
}

/* radial glow from bottom centre */
.hero-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* scanline overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 4px
  );
  pointer-events: none;
}

/* horizontal glow line at bottom */
.hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--accent) 40%, var(--accent2) 60%, transparent 95%);
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 2rem 60px;
  max-width: 1000px;
}

.hero-kicker {
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.92;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,255,136,0.5);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 1.5rem auto 2.8rem;
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}

/* ─── DIVIDER ────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* ─── GAME MODES ─────────────────────────────────────────── */
.modes-section { background: var(--bg); }

.modes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.mode-card {
  background: var(--bg2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.mode-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.mode-card:hover { background: var(--bg3); }
.mode-card:hover::before { opacity: 1; }

.mode-card:first-child { border-right: 1px solid var(--border); }

.mode-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 12px rgba(0,255,136,0.4));
}

.mode-tag {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.mode-title {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.mode-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 380px;
}

/* ─── ARSENAL ────────────────────────────────────────────── */
.arsenal-section { background: var(--black); }

.arsenal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Gap-background technique: parent bg shows through the 1px gaps as grid lines.
   No per-card border-right needed — responsive column changes just work. */
.weapons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.weapon-card {
  background: var(--bg2);
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.weapon-card:hover { background: var(--bg3); }
.weapon-card:hover .weapon-img { filter: drop-shadow(0 0 14px rgba(0,255,136,0.6)) brightness(1.1); }

.weapon-img {
  width: 80px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: filter 0.25s;
}

.weapon-name {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.weapon-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Vehicles sub-grid */
.vehicles-label {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.vehicle-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
  transition: border-color 0.2s;
}
.vehicle-card:hover { border-color: rgba(0,255,136,0.3); }

.vehicle-img {
  width: 90px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
}

.vehicle-name {
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

/* ─── INSTALL / DEPLOY ───────────────────────────────────── */
.deploy-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.deploy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.deploy-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.deploy-card:hover {
  border-color: rgba(0,255,136,0.25);
  transform: translateY(-4px);
}

.deploy-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.85;
}

.deploy-card-body {
  padding: 1.75rem;
}

.deploy-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background: rgba(0,255,136,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,255,136,0.25);
  margin-bottom: 0.75rem;
}

.deploy-title {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}

.deploy-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.deploy-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── COMMUNITY ──────────────────────────────────────────── */
.community-section { background: var(--black); }

.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.discord-card {
  background: linear-gradient(135deg, #1e1f2e 0%, #13141f 100%);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.discord-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.discord-card h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.discord-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  background: #5865f2;
  color: #fff;
  align-self: flex-start;
  transition: background 0.2s, transform 0.2s;
}
.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.resource-col h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.resource-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.resource-list li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: var(--muted);
  transition: color 0.2s;
}
.resource-list li a:hover { color: var(--accent); }
.resource-list li a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.resource-list li a:hover::before { opacity: 1; }

/* ─── SERVER TICKER ─────────────────────────────────────── */
.ticker-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 997;
  height: 30px;
  background: rgba(0,255,136,0.06);
  border-top: 1px solid rgba(0,255,136,0.18);
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}

.ticker-label {
  flex-shrink: 0;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  height: 100%;
  background: rgba(0,255,136,0.12);
  border-right: 1px solid rgba(0,255,136,0.2);
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.ticker-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 60s linear infinite;
}

/* pause scroll on hover */
.ticker-bar:hover .ticker-inner { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-entry {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1.8rem;
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  pointer-events: auto;
  cursor: pointer;
  transition: color 0.15s;
}
.ticker-entry:hover { color: var(--accent); }

.ticker-entry .t-name  { color: #fff; }
.ticker-entry .t-players { color: var(--accent); }
.ticker-entry .t-map   { color: var(--muted); }
.ticker-entry .t-sep   { color: rgba(255,255,255,0.15); padding: 0 0.5rem; }

/* Push footer up to clear bottom ticker when it's present */
body.has-ticker .footer { padding-bottom: calc(30px + 1rem); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-h);
  letter-spacing: 0.05em;
}
.footer a { color: var(--muted); transition: color 0.2s; }
.footer a:hover { color: var(--accent); }

/* ─── CONTENT PAGES ─────────────────────────────────────── */
.page-wrap {
  padding-top: 62px;
  min-height: 100vh;
}

.page-hero {
  background: linear-gradient(180deg, rgba(0,255,136,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}

.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
}
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: var(--muted); margin-top: 0.6rem; font-size: 1rem; }

.page-body {
  padding: 3rem 0 6rem;
}
.page-body h1 {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 2.5rem 0 0.8rem;
}
.page-body h2 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 2rem 0 0.6rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.page-body h3, .page-body h4 {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--accent);
  margin: 1.5rem 0 0.4rem;
}
.page-body h3 { font-size: 1.1rem; }
.page-body h4 { font-size: 0.95rem; color: var(--muted); }
.page-body p { margin-bottom: 1rem; line-height: 1.8; }
.page-body ul, .page-body ol { margin: 0.5rem 0 1rem 1.5rem; }
.page-body li { margin-bottom: 0.4rem; line-height: 1.7; }
.page-body a { color: var(--accent); }
.page-body a:hover { color: var(--accent2); text-decoration: underline; }
.page-body img { max-width: 100%; border-radius: 6px; margin: 0.5rem 0; }
.page-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 1.2rem;
  margin: 1rem 0;
  color: var(--muted);
  font-style: italic;
  background: rgba(0,255,136,0.03);
  border-radius: 0 6px 6px 0;
}
.page-body iframe {
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.page-body .button, .page-body a.button {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid rgba(0,255,136,0.3);
  border-radius: 6px;
  background: rgba(0,255,136,0.08);
  color: var(--accent);
  margin: 0.5rem 0.3rem 0.5rem 0;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.page-body .button:hover, .page-body a.button:hover {
  background: rgba(0,255,136,0.16);
  border-color: rgba(0,255,136,0.5);
  text-decoration: none;
}
.page-body .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-body .col-6 { flex: 1 1 calc(50% - 0.75rem); min-width: 260px; }
.page-body .col-12-mobile { flex: 1 1 100%; }
.page-body section { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.page-body section:last-child { border-bottom: none; }

/* ─── MAP THUMBNAIL STRIPS ───────────────────────────────── */
/* pg is a custom inline element — force it to block so thumbnails start below */
pg { display: block; margin-bottom: 0.4rem; }
/* Make the 5-image map thumbnail groups display as a horizontal row */
.page-body a.image {
  display: inline-block;
  margin: 0.2rem 0.15rem;
  vertical-align: top;
}
.page-body a.image img.shadow-box,
.page-body a.image img {
  height: 72px;
  width: auto;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, opacity 0.2s;
  display: block;
}
.page-body a.image:hover img {
  border-color: var(--accent);
  opacity: 0.88;
}
.page-body footer { margin-top: 1rem; }

/* redirect splash */
.redirect-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}
.redirect-splash img { width: 80px; opacity: 0.85; }
.redirect-splash h2 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.redirect-splash p { color: var(--muted); font-size: 0.9rem; }
.redirect-splash .spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(0,255,136,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .modes-grid       { grid-template-columns: 1fr; }
  .mode-card:first-child { border-right: 0; border-bottom: 1px solid var(--border); }
  .weapons-grid     { grid-template-columns: repeat(3, 1fr); }
  .vehicles-grid    { grid-template-columns: repeat(3, 1fr); }
  .deploy-grid      { grid-template-columns: 1fr; }
  .community-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .arsenal-header   { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .navbar-links     { display: none; }
  .navbar-toggle    { display: block; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(8,10,12,0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
    z-index: 998;
  }
  .weapons-grid     { grid-template-columns: repeat(2, 1fr); }
  .vehicles-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero h1          { font-size: 3.5rem; }
  .hero-stats       { gap: 1.5rem; }
  .deploy-header    { flex-direction: column; align-items: flex-start; }
}
