/* Thème sombre dès le premier paint (évite FOUC / CLS) */
html.dark {
  background-color: #0f0f0f;
  color: hsl(0, 0%, 98%);
}
html:not(.dark) {
  background-color: #fafafa;
  color: hsl(0, 0%, 6%);
}
body {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}
#app-shell a {
  color: #6ee7b7;
  text-decoration: none;
}
#app-shell a:focus-visible {
  outline: 2px solid #6ee7b7;
  outline-offset: 2px;
}
