/* Base typographique et chromatique de la refonte. Partagé par index.html et /dev/. */
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background-color: #F4F1EA;
  color: #16140F;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

::selection { background: #3D2BF0; color: #fff; }

/* Retrait de l'arbre d'avis, réduit sur mobile pour garder les cartes lisibles. */
:root { --thread-indent-step: 30px; }
@media (max-width: 639px) {
  :root { --thread-indent-step: 16px; }
}

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-8px); }
}
.animate-shake {
  animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
