/* Show pre-rendered content immediately — do not wait for JS animations */
#main [style*="opacity:0"],
#main [style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
}

/* Reduce animation jank on slow connections */
@media (prefers-reduced-motion: reduce) {
  #main * {
    animation: none !important;
    transition: none !important;
  }
}
