/* GTA VI Wiki — Override popcodex chrome */
body:has(.gta-vi-wiki) > header,
body:has(.gta-vi-wiki) > footer,
body:has(.gta-vi-wiki) > div > header,
body:has(.gta-vi-wiki) > div > footer {
  display: none !important;
}

body:has(.gta-vi-wiki) {
  background: hsl(220 67% 2%) !important;
  font-family: 'DM Sans', sans-serif !important;
}

/* Retro mode: fix selector — class is on <html>, not on .gta-vi-wiki */
.retro-mode .gta-vi-wiki {
  filter: contrast(1.1) saturate(1.3);
}
.retro-mode .gta-vi-wiki::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(255, 20, 147, 0.02) 1px,
    rgba(255, 20, 147, 0.02) 2px
  );
  pointer-events: none;
  z-index: 9998;
}

/* Neon glow keyframes */
@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
