/* app.css — styles globaux M4 Jeux */

* { box-sizing: border-box; }

body {
  background: #0f0f13;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Scrollbar custom */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a24; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 3px; }

/* Focus visible accessible */
:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Liens */
a { color: inherit; text-decoration: none; }
