/* ═══════════════════════════════════════════════════════
   BLITZ: THE LAST STAND — Global Stylesheet
   ═══════════════════════════════════════════════════════ */

/* Fonts loaded via <link> in HTML — @import removed to prevent double load */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:       #060708;
  --bg2:      #0C0E10;
  --bg3:      #141618;
  --red:      #CC1111;
  --red-dark: #8B0000;
  --amber:    #C9920A;
  --gold:     #D4AA50;
  --olive:    #2D3A18;
  --text:     #DDD5C0;
  --text2:    #8A8678;
  --border:   #1E2324;
  --nav-h:    72px;
  --font-h:   'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-b:   'Rajdhani', 'Arial Narrow', Arial, sans-serif;
  --font-m:   'Roboto Mono', 'Courier New', monospace;
  --green:    #1E6B2E;
}

/* ── Reset ────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* noise overlay removed — caused rendering artifacts in Safari */

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1; }

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-gap { padding: 100px 0; }
.section-gap-sm { padding: 64px 0; }

.section-label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 24px;
}
.section-title span { color: var(--red); }
.section-body {
  font-size: 17px;
  color: var(--text2);
  max-width: 680px;
  line-height: 1.8;
}

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 18px;
  letter-spacing: 3px;
  padding: 14px 36px;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #E01515;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,17,17,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,170,80,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
  clip-path: none;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text2); }
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6, 7, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204, 17, 17, 0.25);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(6, 7, 8, 0.98); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text2);
  padding: 6px 14px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: var(--border);
}
.nav-cta {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 2px;
  background: var(--red);
  color: #fff;
  padding: 10px 22px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: #E01515; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(6,7,8,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 32px;
  letter-spacing: 4px;
  color: var(--text2);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--red); }
.nav-mobile .nav-cta { margin-top: 20px; text-align: center; padding: 16px 40px; font-size: 18px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 15px; }
  .nav-cta { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060708;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,7,8,0.75) 0%,
    rgba(6,7,8,0.35) 40%,
    rgba(6,7,8,0.55) 80%,
    rgba(6,7,8,0.95) 100%
  );
  z-index: 1;
}
.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--red);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: 6px;
  color: var(--red);
  line-height: 0.9;
  text-shadow: 0 0 60px rgba(204,17,17,0.55);
  margin-bottom: 8px;
}
.hero-title-the {
  font-size: clamp(26px, 4.5vw, 54px);
  color: #fff;
  letter-spacing: 14px;
  margin-bottom: 0;
}
.hero-title-main { color: #fff; }
.hero-title-sub {
  font-size: clamp(42px, 7vw, 86px);
  color: var(--red);
}
.hero-tagline {
  font-family: var(--font-b);
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text2);
  letter-spacing: 3px;
  margin: 24px 0;
  text-transform: uppercase;
}
.hero-winter {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 5px;
  color: #fff;
  background: var(--red-dark);
  border: 1px solid var(--red);
  padding: 6px 20px;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text2);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text2), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ── Ticker ─────────────────────────────────────────────── */
.ticker {
  background: #0A0000;
  border-top: 1px solid rgba(204,17,17,0.3);
  border-bottom: 1px solid rgba(204,17,17,0.3);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  padding: 0 32px;
  border-right: 1px solid rgba(204,17,17,0.3);
  flex-shrink: 0;
}
.ticker-item.alert { color: var(--gold); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-h);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--red);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text2);
  margin-top: 8px;
  display: block;
}

@media (max-width: 600px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ── Trailer Section ─────────────────────────────────────── */
.trailer-section {
  background: #000;
  padding: 100px 0;
}
.trailer-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--border);
}
.trailer-video {
  width: 100%;
  height: 100%;
  display: block;
}
.trailer-poster {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s;
}
.trailer-poster.hidden { opacity: 0; pointer-events: none; }
.play-btn {
  width: 88px;
  height: 88px;
  background: rgba(204,17,17,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 0 0 0 rgba(204,17,17,0.5);
  animation: playPulse 2.5s ease-in-out infinite;
}
.play-btn:hover { transform: scale(1.1); background: var(--red); }
.play-btn svg { width: 32px; height: 32px; fill: #fff; margin-left: 6px; }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,17,17,0.5); }
  50% { box-shadow: 0 0 0 24px rgba(204,17,17,0); }
}

/* ── Feature Grid ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}
.feature-card {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background 0.25s;
}
.feature-card:hover { background: var(--bg3); }
.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}
.feature-title {
  font-family: var(--font-h);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
}

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

/* ── Operators Preview ───────────────────────────────────── */
.operators-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.op-preview-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.op-preview-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.op-preview-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: var(--bg2);
  filter: saturate(0.7) contrast(1.1);
  transition: filter 0.25s;
}
.op-preview-card:hover .op-preview-img { filter: saturate(1) contrast(1.1); }
.op-preview-info {
  padding: 10px 12px;
  border-top: 2px solid var(--olive);
}
.op-preview-name {
  font-family: var(--font-h);
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
}
.op-preview-class {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text2);
  margin-top: 2px;
}

@media (max-width: 900px) { .operators-preview { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .operators-preview { grid-template-columns: repeat(2, 1fr); } }

/* ── About Section ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-img {
  position: relative;
}
.about-img img {
  width: 100%;
  border: 1px solid var(--border);
  filter: contrast(1.1) saturate(0.8);
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(204,17,17,0.2);
  pointer-events: none;
  z-index: 0;
}
.usps { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.usp {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--red);
}
.usp-text strong { color: var(--text); font-size: 15px; }
.usp-text p { font-size: 13px; color: var(--text2); }

/* ── Section Divider ─────────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.section-bg { background: var(--bg2); }

/* ── Final CTA ────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.4) brightness(0.4);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(6,7,8,0.7), rgba(139,0,0,0.3), rgba(6,7,8,0.85));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(204,17,17,0.5);
}
.cta-sub {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 20px;
}
.cta-body {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Newsletter input */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 32px auto 0;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--text);
  font-family: var(--font-m);
  font-size: 13px;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: var(--text2); }
.newsletter-input:focus { border-color: var(--red); }
.newsletter-btn {
  background: var(--red);
  color: #fff;
  font-family: var(--font-h);
  font-size: 16px;
  letter-spacing: 2px;
  padding: 14px 28px;
  border: 1px solid var(--red);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: #E01515; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 22px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--red); }
.footer-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 14px;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text2);
  letter-spacing: 1px;
}
.footer-copy span { color: var(--red); }
.footer-discord {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(114, 137, 218, 0.55);
  text-decoration: none;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-discord:hover { color: #7289DA; }
.footer-discord-icon  { width: 16px; height: 16px; flex-shrink: 0; }
.footer-winter {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text2);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ═══ OPERATORS PAGE ══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(180deg, #0A0000 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { text-align: center; }

.operator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.op-card {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  min-height: 320px;
  transition: background 0.2s;
}
.op-card:hover { background: var(--bg3); }
.op-portrait-wrap {
  position: relative;
  overflow: hidden;
}
.op-portrait-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 2;
}
.op-portrait {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--bg);
  filter: contrast(1.15) saturate(0.75);
  transition: filter 0.3s, transform 0.3s;
}
.op-card:hover .op-portrait { filter: contrast(1.15) saturate(0.9); transform: scale(1.04); }
.op-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg2) 100%);
  transition: background 0.2s;
}
.op-card:hover .op-portrait-overlay { background: linear-gradient(to right, transparent 60%, var(--bg3) 100%); }

.op-info { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.op-unlock {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.op-name {
  font-family: var(--font-h);
  font-size: 36px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.op-class {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.op-lore {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--red);
  padding-left: 14px;
  margin-bottom: 20px;
}
.op-abilities { display: flex; flex-direction: column; gap: 8px; }
.op-ability {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-left: 2px solid;
  padding: 10px 14px;
  font-size: 13px;
}
.op-ability strong {
  display: block;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.op-ability.passive strong { color: var(--gold); border-left-color: var(--gold); }
.op-ability.special strong { color: var(--red); border-left-color: var(--red); }
.op-ability p { color: var(--text2); line-height: 1.5; }

@media (max-width: 900px) { .operator-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .op-card { grid-template-columns: 1fr; grid-template-rows: 200px 1fr; }
  .op-portrait-overlay { background: linear-gradient(to bottom, transparent 60%, var(--bg2) 100%); }
}

/* ═══ THREATS PAGE ════════════════════════════════════════ */
.tier-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 60px 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.tier-label {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(204,17,17,0.4);
}
.tier-title {
  font-family: var(--font-h);
  font-size: 24px;
  letter-spacing: 4px;
  color: #fff;
}
.tier-count {
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--text2);
  margin-left: auto;
}

.enemy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.enemy-card {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  transition: background 0.2s;
}
.enemy-card:hover { background: var(--bg3); }
.enemy-card.boss {
  background: #080000;
  grid-column: span 1;
}
.enemy-card.boss:hover { background: #100000; }

.enemy-sprite-wrap {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.enemy-sprite {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: contrast(1.1) saturate(0.85) brightness(1.0);
  transition: filter 0.25s, transform 0.25s;
}
.enemy-card:hover .enemy-sprite { filter: contrast(1.15) saturate(1.1) brightness(1.15); transform: scale(1.08); }

.enemy-info { padding: 16px; }
.enemy-badge {
  display: inline-block;
  font-family: var(--font-m);
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--red);
  border: 1px solid rgba(204,17,17,0.5);
  padding: 2px 8px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.enemy-name-text {
  font-family: var(--font-h);
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.enemy-threat {
  display: flex;
  gap: 3px;
  margin-bottom: 8px;
}
.threat-pip {
  width: 8px; height: 3px;
  background: var(--border);
  transition: background 0.2s;
}
.threat-pip.active { background: var(--red); }
.enemy-desc-text {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.enemy-stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.enemy-stat {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text2);
}
.enemy-stat span { color: var(--gold); }

/* Boss enemies take full row */
.enemy-grid-bosses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.boss-card {
  background: #080000;
  display: grid;
  grid-template-columns: 140px 1fr;
  border: 1px solid rgba(204,17,17,0.15);
  transition: background 0.2s;
}
.boss-card:hover { background: #100000; }
.boss-sprite-wrap {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(204,17,17,0.15);
}
.boss-sprite {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: contrast(1.1) saturate(0.75) brightness(0.95);
  transition: all 0.3s;
}
.boss-card:hover .boss-sprite { filter: contrast(1.2) saturate(1.0) brightness(1.15); transform: scale(1.06); }
.boss-info { padding: 24px; }
.boss-badge-text {
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  border: 1px solid rgba(204,17,17,0.5);
  display: inline-block;
  padding: 3px 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.boss-name {
  font-family: var(--font-h);
  font-size: 32px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(204,17,17,0.3);
}
.boss-threat { display: flex; gap: 4px; margin-bottom: 12px; }
.boss-threat .threat-pip { height: 4px; width: 12px; }
.boss-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.boss-weakness {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 3px;
  padding: 5px 10px 5px 8px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.boss-weakness strong {
  color: inherit;
  font-weight: 900;
}
.boss-weakness em {
  font-style: normal;
  opacity: 0.65;
}

.boss-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.boss-stat {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--text2);
}
.boss-stat span { color: var(--red); }

@media (max-width: 900px) {
  .enemy-grid { grid-template-columns: repeat(2, 1fr); }
  .enemy-grid-bosses { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .enemy-grid { grid-template-columns: 1fr; }
  .enemy-card { grid-template-columns: 110px 1fr; }
  .enemy-sprite { width: 110px; height: 110px; }
}

/* ═══ FAQ PAGE ════════════════════════════════════════════ */
.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: #fff; }
.faq-question.active { color: var(--red); }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 12px; height: 2px; top: 11px; left: 6px; }
.faq-icon::after { width: 2px; height: 12px; top: 6px; left: 11px; }
.faq-question.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-category-header {
  padding: 40px 0 16px;
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
}

/* ═══ WISHLIST PAGE ═══════════════════════════════════════ */
.wishlist-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.wishlist-block {
  background: var(--bg2);
  padding: 48px 40px;
  text-align: center;
  transition: background 0.2s;
}
.wishlist-block:hover { background: var(--bg3); }
.wishlist-block.featured { background: #0A0000; border-top: 3px solid var(--red); }
.wb-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: var(--gold);
}
.wb-title {
  font-family: var(--font-h);
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
}
.wb-desc {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-number {
  font-family: var(--font-h);
  font-size: 36px;
  color: var(--red);
  display: block;
}
.trust-label {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text2);
}

@media (max-width: 768px) {
  .wishlist-blocks { grid-template-columns: 1fr; }
}

/* ─── Misc utilities ─────────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

.red { color: var(--red); }
.gold { color: var(--gold); }
.mono { font-family: var(--font-m); }

/* Operator color stripes */
.op-stripe-commando .op-portrait-wrap::before,
.op-stripe-commando .op-ability.special { border-color: #1d9e6a; }
.op-stripe-marine .op-portrait-wrap::before,
.op-stripe-marine .op-ability.special { border-color: #c85a00; }
.op-stripe-seal .op-portrait-wrap::before,
.op-stripe-seal .op-ability.special { border-color: #1a72b5; }
.op-stripe-soldier .op-portrait-wrap::before,
.op-stripe-soldier .op-ability.special { border-color: #b8860b; }
.op-stripe-guerrilla .op-portrait-wrap::before,
.op-stripe-guerrilla .op-ability.special { border-color: #4a9e1a; }
.op-stripe-sergeant .op-portrait-wrap::before,
.op-stripe-sergeant .op-ability.special { border-color: #b03a1a; }

.op-stripe-commando .op-portrait-wrap::before { background: #1d9e6a; }
.op-stripe-marine   .op-portrait-wrap::before { background: #c85a00; }
.op-stripe-seal     .op-portrait-wrap::before { background: #1a72b5; }
.op-stripe-soldier  .op-portrait-wrap::before { background: #b8860b; }
.op-stripe-guerrilla .op-portrait-wrap::before { background: #4a9e1a; }
.op-stripe-sergeant .op-portrait-wrap::before { background: #b03a1a; }

.op-preview-card.stripe-commando .op-preview-info { border-top-color: #1d9e6a; }
.op-preview-card.stripe-marine   .op-preview-info { border-top-color: #c85a00; }
.op-preview-card.stripe-seal     .op-preview-info { border-top-color: #1a72b5; }
.op-preview-card.stripe-soldier  .op-preview-info { border-top-color: #b8860b; }
.op-preview-card.stripe-guerrilla .op-preview-info { border-top-color: #4a9e1a; }
.op-preview-card.stripe-sergeant .op-preview-info { border-top-color: #b03a1a; }

/* ═══ IMPROVEMENTS ════════════════════════════════════════ */

/* ── Coming Soon button ─────────────────────────────────── */
.btn-soon {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Newsletter input error state ───────────────────────── */
.newsletter-input.error {
  border-color: var(--red);
  animation: shakeInput 0.4s ease;
}
@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  60%       { transform: translateX(6px); }
  80%       { transform: translateX(-3px); }
}

/* ── Infinity counter ────────────────────────────────────── */
.stat-infinity, .trust-infinity {
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 12px rgba(204,17,17,0.3); }
  50%       { text-shadow: 0 0 28px rgba(204,17,17,0.7), 0 0 50px rgba(204,17,17,0.2); }
}

/* ── Operator preview card — improved hover ─────────────── */
.op-preview-card {
  position: relative;
  overflow: hidden;
}
.op-preview-card::after {
  content: 'VIEW DOSSIER →';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(204,17,17,0.9);
  color: #fff;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 8px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.op-preview-card:hover::after { transform: translateY(0); }

/* ── Trailer — mobile fix ───────────────────────────────── */
.trailer-wrapper {
  border-top: 2px solid var(--red);
}
.trailer-poster {
  background-size: cover;
  background-position: center;
}
@media (max-width: 640px) {
  .trailer-wrapper { margin: 0 -24px; }
  .play-btn { width: 72px; height: 72px; }
  .play-btn svg { width: 26px; height: 26px; }
}

/* ── Stats strip — mobile ───────────────────────────────── */
@media (max-width: 400px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-number { font-size: 48px; }
}

/* ── Feature grid — tablet ──────────────────────────────── */
@media (max-width: 960px) and (min-width: 769px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section gap — mobile ───────────────────────────────── */
@media (max-width: 640px) {
  .section-gap     { padding: 64px 0; }
  .section-gap-sm  { padding: 40px 0; }
  .cta-section     { padding: 80px 0; }
  .trailer-section { padding: 64px 0; }
  .footer          { padding: 40px 0 24px; }
}

/* ── Wishlist block — mobile ────────────────────────────── */
@media (max-width: 640px) {
  .wishlist-block { padding: 36px 24px; }
  .wb-title       { font-size: 22px; }
}

/* ── Btn size — mobile ──────────────────────────────────── */
@media (max-width: 480px) {
  .btn { font-size: 15px; padding: 12px 24px; letter-spacing: 2px; }
  .hero-ctas { gap: 10px; }
  .cta-btns  { flex-direction: column; align-items: center; }
}

/* ── Page hero padding — mobile ─────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
}

/* ── Footer responsive ──────────────────────────────────── */
@media (max-width: 480px) {
  .footer-inner { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Operator card portrait min-height fix ──────────────── */
@media (min-width: 601px) {
  .op-portrait-wrap { min-height: 260px; }
}

/* ── Trust strip mobile ─────────────────────────────────── */
@media (max-width: 640px) {
  .trust-strip { gap: 24px; }
  .trust-number { font-size: 28px; }
}

/* ── FAQ answer max-height ──────────────────────────────── */
.faq-answer.open { max-height: 600px; }

/* ── iframe game embed mobile ───────────────────────────── */
.play-frame-mobile-note {
  display: none;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text2);
  text-align: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .play-frame { display: none; }
  .play-frame-mobile-note { display: block; }
}

/* ═══ RESPONSIVE PATCH aug 2026 — all-device fixes ═══════════

   1. Prevent horizontal scroll on all pages
   2. Fix boss sprite overflow (260px sprite in 140px column)
   3. Fix enemy sprite overflow (160px sprite in 150px column)
   4. Stats strip 2-col: correct borders
   5. Nav links: 44px min touch target
   6. Mobile nav: scrollable + overscroll contain
   7. Newsletter: stack vertically on tiny screens
   8. Trailer wrapper: no negative margin bleed
   9. Hero title: overflow-wrap protection
   10. Buttons: min 48px tap area on mobile
   11. Boss card: stack vertically on mobile
   12. Safe area insets for notch phones

   ═══════════════════════════════════════════════════════════ */

/* ── 1. Global overflow prevention ───────────────────────── */
body { overflow-x: hidden; }

/* ── 2. Boss sprite: fix 260px sprite in 140px column ─────── */
.boss-card { grid-template-columns: 200px 1fr; }
.boss-sprite-wrap {
  overflow: hidden;
  padding: 16px;
  min-height: 200px;
}
.boss-sprite {
  width: 168px;
  height: 168px;
}

/* ── 3. Enemy sprite: contain overflow in sprite-wrap ──────── */
.enemy-sprite-wrap { overflow: hidden; }

/* ── 4. Stats strip 2-column: fix border asymmetry ─────────── */
@media (max-width: 600px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* ── 5. Nav links: 44px min touch target ─────────────────── */
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ── 6. Mobile nav: scrollable + overscroll ─────────────── */
.nav-mobile {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

/* ── 7. Newsletter: stack on tiny screens ────────────────── */
@media (max-width: 400px) {
  .newsletter-form {
    flex-direction: column;
    gap: 0;
  }
  .newsletter-input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .newsletter-btn {
    width: 100%;
    padding: 14px;
    border-top: none;
  }
}

/* ── 8. Trailer wrapper: remove bleed margin on mobile ───── */
@media (max-width: 640px) {
  .trailer-wrapper {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

/* ── 9. Hero title: overflow wrap protection ─────────────── */
.hero-title {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.hero-content {
  width: 100%;
  max-width: min(900px, 100vw - 48px);
}

/* ── 10. Buttons: min 48px tap area on mobile ────────────── */
@media (max-width: 640px) {
  .btn {
    min-height: 48px;
    justify-content: center;
  }
}

/* ── 11. Boss card: stack on small screens ───────────────── */
@media (max-width: 640px) {
  .boss-card {
    grid-template-columns: 1fr;
  }
  .boss-sprite-wrap {
    border-right: none;
    border-bottom: 1px solid rgba(204,17,17,0.15);
    min-height: auto;
    padding: 20px;
    justify-content: center;
  }
  .boss-sprite {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .boss-info { padding: 16px; }
  .boss-name { font-size: 24px; }
}

/* ── 12. Enemy sprite: tighter mobile ───────────────────── */
@media (max-width: 480px) {
  .enemy-sprite-wrap { padding: 8px; }
  .enemy-sprite { width: 90px; height: 90px; }
}

/* ── 13. Container safe padding on tiny screens ──────────── */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .section-gap { padding: 48px 0; }
}

/* ── 14. Operator preview: 1-col on very small ───────────── */
@media (max-width: 360px) {
  .operators-preview { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── 15. Section titles: protect on tiny screens ─────────── */
@media (max-width: 360px) {
  .section-title { font-size: 28px; letter-spacing: 2px; }
  .hero-title { font-size: clamp(44px, 12vw, 80px); }
}

/* ── 16. Feature grid: single col on 640px ───────────────── */
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }
}

/* ── 17. Wishlist blocks: padding on mobile ──────────────── */
@media (max-width: 360px) {
  .wishlist-block { padding: 28px 16px; }
}

/* ── 18. Footer copy: tiny screen ──────────────────────────── */
@media (max-width: 360px) {
  .footer-copy { font-size: 9px; letter-spacing: 0; }
  .footer-winter { display: none; }
}

/* ── 19. Operator card: stack on 480px ──────────────────── */
@media (max-width: 480px) {
  .op-card {
    grid-template-columns: 1fr;
    grid-template-rows: 180px 1fr;
    min-height: auto;
  }
  .op-portrait-overlay {
    background: linear-gradient(to bottom, transparent 60%, var(--bg2) 100%);
  }
  .op-info { padding: 16px; }
  .op-name { font-size: 28px; }
}

/* ── 20. CTA buttons: full-width on tiny ─────────────────── */
@media (max-width: 360px) {
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { text-align: center; width: 100%; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
}

/* ── 21. Enemy grid: 1-col on very small ─────────────────── */
@media (max-width: 360px) {
  .enemy-grid { grid-template-columns: 1fr; }
  .enemy-card { grid-template-columns: 80px 1fr; }
  .enemy-sprite-wrap { padding: 6px; }
  .enemy-sprite { width: 68px; height: 68px; }
}

/* ── 22. Safe area insets (notch phones) ─────────────────── */
@supports (padding: env(safe-area-inset-top)) {
  .nav-inner { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
  .footer { padding-bottom: max(40px, env(safe-area-inset-bottom)); }
}

/* ── 23. Threats page — 2-col grids responsive ───────────── */
/* Replaces inline style="grid-template-columns: repeat(2, 1fr)"
   so media queries can override it properly on small screens.  */
.enemy-grid-2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) {
  .enemy-grid-2col { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* Enemy grids with 3-col default → 2-col on tablet */
  .enemy-grid:not(.enemy-grid-2col) { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .enemy-grid:not(.enemy-grid-2col) { grid-template-columns: 1fr; }
}

/* ── 24. Tier III/CMD enemy card (Baron + Dark Commander) ─── */
/* Replaces inline style="grid-template-columns: 120px 1fr"    */
.enemy-card-tier3 {
  grid-template-columns: 120px 1fr;
}
@media (max-width: 640px) {
  .enemy-card-tier3 {
    grid-template-columns: 100px 1fr;
  }
}
@media (max-width: 400px) {
  .enemy-card-tier3 {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .enemy-card-tier3 .enemy-sprite-wrap {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: center;
    padding: 12px;
  }
}

/* ── 25. Enemy name — wrap protection on narrow cards ───────── */
.enemy-name-text {
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 640px) {
  .enemy-name-text { font-size: 17px; letter-spacing: 1px; }
}

/* ── 26. Overlord boss — zelfde container, grotere sprite ───── */
/* Container blijft identiek aan de andere boss-cards (200px kolom).
   De sprite is groter via transform scale: visueel dikker, maar neemt
   geen extra layout-ruimte in. overflow:hidden knipt nette randen.    */
.boss-sprite-overlord {
  width: 168px;
  height: 168px;
  transform: scale(1.5);
  transform-origin: center center;
}

/* Overlord badge + naam: rood accent al via inline style, extra glow */
.boss-card-overlord .boss-name {
  font-size: 40px;
}
.boss-card-overlord .boss-badge-text {
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════════════════════
   SCREENSHOT SLIDER
   ══════════════════════════════════════════════════════════ */

.ss-wrap {
  max-width: 1100px;
  margin: 0 auto;
  user-select: none;
}

/* Main stage */
.ss-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.ss-stage::before,
.ss-stage::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--red);
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}
.ss-stage::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.ss-stage::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.ss-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.ss-slide {
  flex: 0 0 100%;
  height: 100%;
}

.ss-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.ss-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(6,7,8,0.7);
  border: 1px solid var(--border);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ss-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.ss-arrow-prev { left: 14px; }
.ss-arrow-next { right: 14px; }
.ss-arrow svg  { width: 18px; height: 18px; fill: currentColor; pointer-events: none; }

/* Counter overlay */
.ss-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(221,213,192,0.55);
  background: rgba(6,7,8,0.6);
  padding: 3px 10px;
  pointer-events: none;
}
.ss-counter-cur { color: var(--red); }

/* Thumbnail strip */
.ss-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: scroll;
  scrollbar-width: none;
}
.ss-thumbs::-webkit-scrollbar { display: none; }

.ss-thumb {
  flex: 0 0 calc((100% - 6px * 4) / 5);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
}
.ss-thumb:hover { opacity: 0.75; }
.ss-thumb.active { opacity: 1; border-color: var(--red); }

.ss-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 640px) {
  .ss-arrow { width: 36px; height: 36px; }
  .ss-thumb { flex: 0 0 calc((100% - 6px * 3) / 4); }
}
@media (max-width: 420px) {
  .ss-thumb { flex: 0 0 calc((100% - 6px * 2) / 3); }
}

