
/* Styles globaux PrimeCarousel */
:root {
  color-scheme: dark;
}

body {
  margin: 0;
  padding: 0;
  background-color: #0A0A0B;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Style "Béton" */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0A0A0B;
}

::-webkit-scrollbar-thumb {
  background: #161618;
  border-radius: 10px;
  border: 1px solid #0A0A0B;
}

::-webkit-scrollbar-thumb:hover {
  background: #00D1FF;
}

/* Animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.animate-shake {
  animation: shake 0.2s ease-in-out 0s 2;
}
