/* Pre-Flutter splash shown while main.dart.js and CanvasKit load.
 *
 * Kept in its own file (rather than an inline <style> in index.html) so the
 * production Content-Security-Policy does not need a per-edit hash or a blanket
 * 'unsafe-inline' for our own markup. See vercel.json.
 */
#splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101510;
  z-index: 9999;
  transition: opacity 0.4s ease-out;
}

#splash.fade-out {
  opacity: 0;
  pointer-events: none;
}

#splash img {
  height: 60px;
}
