/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=JetBrains+Mono&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

/* Police type 'code' pour les éléments techniques */
pre, code, .font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Scrollbar personnalisée style "Cyber" */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #0EA5E9; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #38bdf8; 
}

/* Effet de lueur sur le texte au survol (optionnel) */
.glow-text:hover {
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.7);
}