/* Estilos críticos para prevenir flash branco */
html,
body {
  background-color: #040404 !important;
  color: #ffffff !important;
}

/* Ensure background is applied before any rendering */
html::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040404;
  z-index: -1;
}
