/**
 * Style pixelisé pour le texte "Data Scientist & Full Stack Developer"
 * Ce style s'applique UNIQUEMENT sur mobile pour donner un aspect très pixelisé
 * Chargé en dernier pour garantir qu'aucun autre style ne peut l'écraser
 */

/* Version mobile uniquement */
@media only screen and (max-width: 768px) {
    .profile-signature .pixelated-profession,
    p.pixelated-profession,
    .pixelated-profession {
        font-family: 'Press Start 2P', cursive !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        line-height: 1.6 !important;
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8) !important;
        color: #FFFFFF !important;
        margin: 8px 0 !important;
        padding: 0 5px !important;
        font-weight: normal !important;
        transform: scale(1, 1.1) !important;
    }
    
    /* Ajustement supplémentaire pour les très petits écrans */
    @media only screen and (max-width: 375px) {
        .profile-signature .pixelated-profession,
        p.pixelated-profession,
        .pixelated-profession {
            font-size: 0.65rem !important;
            letter-spacing: 0.5px !important;
            line-height: 1.5 !important;
            padding: 0 2px !important;
        }
    }
}

/* Version desktop inchangée (gardée pour référence) */
@media only screen and (min-width: 769px) {
    /* Aucun style supplémentaire pour la version desktop */
}