@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Scrollbar pour faire pro */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a; 
}
::-webkit-scrollbar-thumb {
  background: #333; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FAFF00; /* Jaune au survol */
}

/* Effet de sélection de texte Gen Z */
::selection {
  background-color: #FAFF00;
  color: #000;
}