/* Performance overrides — injected post-build to reduce hover/animation lag */

/* 1. Disable animated dust-particle overlay (heaviest single offender) */
#app:before {
  animation: none !important;
  will-change: auto !important;
  opacity: 0.3 !important;
}

/* 2. Disable atmosphere oil-lamp flicker animation */
.atmosphere-overlay {
  animation: none !important;
  will-change: auto !important;
}

/* 3. Remove drop-shadow filter from revolver cursor SVG */
.sight-svg {
  filter: none !important;
}

/* 4. Simplify thumbtack hover — remove box-shadow transition */
.thumbtack {
  transition: opacity .18s ease, transform .24s ease !important;
}

/* 5. Promote posters to own GPU layer to avoid clip-path recalc */
.poster {
  will-change: transform !important;
  contain: layout style paint !important;
}

/* 6. Disable body pseudo-element gradients during interaction */
body:before,
body:after {
  will-change: auto !important;
}
