/* Chagona — styles globaux */

/* Transitions globales */
*, *::before, *::after { box-sizing: border-box; }

/* Scrollbar fine */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #d1d5db; }

/* Prose basique */
.prose p { margin-bottom: 1em; }
.prose h2 { font-size: 1.25rem; font-weight: 700; margin: 1.5em 0 .5em; }
.prose ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.prose a { color: #f97316; text-decoration: underline; }

/* Animation fade-in pour les pages */
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
main { animation: fadeIn .2s ease-out; }
