/* Fitox admin — shared base styles (void ground + film grain + subtle load-in).
   Previously duplicated inline in every page; centralised here. */
body { background: #08080C; }
.fitox-grain { position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@media (prefers-reduced-motion: no-preference) {
  @keyframes fx-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  body { animation: fx-fade-in 0.4s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
}
