<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
    cursor: auto;
}

/* Forcer les styles de base sur tous les appareils sans interference */
:root {
    --primary-color: #2a6496;
    --primary-color-rgb: 42, 100, 150;
    --secondary-color: #53a6e6;
    --secondary-color-rgb: 83, 166, 230;
    --accent-color: #2c3e50;
    --accent-color-rgb: 44, 62, 80;
    --background-color: #ffffff;
    --background-color-rgb: 255, 255, 255;
    --text-color: #222222;
    --text-color-secondary: #555555;
    --border-color: #dddddd;
    --card-bg: #f8f9fa;
    --hover-color: #1a4971;
    --error-color: #d9534f;
    --success-color: #5cb85c;
    --focus-outline: 2px solid #53a6e6;
    
    /* Ajout de nouvelles variables */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), #4a89dc);
    --accent-gradient: linear-gradient(135deg, var(--accent-color), #3a536b);
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.08);
    --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    --transition-medium: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

body {
    position: relative;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.2s ease, color 0.2s ease;
    line-height: 1.7;
    letter-spacing: 0.01em;
    cursor: auto;
}

/* Amélioration de l'accessibilité au clavier */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* Style pour les éléments interactifs lorsqu'ils sont focus par clavier */
a:focus-visible, button:focus-visible {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(var(--background-color-rgb), 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    will-change: transform, background-color;
}

.dark-mode header {
    background-color: rgba(15, 15, 15, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.dark-mode .logo {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.dark-mode nav a {
    color: #ffffff;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after, nav a:focus::after {
    width: 100%;
}

nav a:hover, nav a:focus {
    color: var(--primary-color);
}

.dark-mode nav a:hover,
.dark-mode nav a:focus {
    color: var(--primary-color);
}

section {
    min-height: auto;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 15px auto 0;
    border-radius: 3px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.dark-mode {
    --background-color: #0f0f0f !important;
    --background-color-rgb: 15, 15, 15 !important;
    --text-color: #ffffff !important;
    --text-color-secondary: #b0b0b0 !important;
    --border-color: #333333 !important;
    --card-bg: #1a1a1a !important;
    --primary-color: #4a9eff !important;
    --secondary-color: #78b9f0 !important;
    --hover-color: #78b9f0 !important;
}

.dark-mode,
.dark-mode body {
    background-color: #0f0f0f !important;
    color: #ffffff !important;
}

.dark-mode header {
    background-color: rgba(15, 15, 15, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.dark-mode nav {
    background-color: #0f0f0f !important;
}

.dark-mode .competence,
.dark-mode .parcours-item,
.dark-mode .projet {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1601;
    position: relative;
    border-radius: 4px;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

/* Style pour le bouton burger lorsqu'il est en mode "fermer" */
.burger-menu.close {
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Mise en évidence du bouton quand le menu est ouvert */
nav.active ~ .header-controls .burger-menu {
    color: var(--primary-color);
    transform: rotate(180deg);
    z-index: 1601 !important;
}

.dark-mode .burger-menu {
    color: var(--text-color) !important;
}

.dark-mode nav.active ~ .header-controls .burger-menu {
    color: var(--primary-color) !important;
    z-index: 1601 !important;
}

.intro {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px 80px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    gap: 20px;
    text-align: center;
}

.intro h2 {
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.3;
}

.intro p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.intro p:last-child {
    margin-bottom: 0;
}

.scroll-down-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 10px;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.scroll-down-btn:hover {
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Styles unifiés pour les conteneurs */
.competences-container,
.parcours-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.competences-column,
.parcours-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Styles unifiés pour les cartes */
.competence,
.parcours-item {
    width: 100%;
    background: rgba(var(--background-color-rgb), 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-mode .competence,
.dark-mode .parcours-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.competence:hover, 
.parcours-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--primary-color-rgb), 0.3);
}

.dark-mode .competence:hover,
.dark-mode .parcours-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(74, 158, 255, 0.3);
}

.competence h4, .parcours-item h4 {
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    margin-bottom: 15px;
    transition: color var(--transition-fast);
}

.competence:hover h4, .parcours-item:hover h4 {
    color: var(--accent-color);
}

.competence::after, .parcours-item::after {
    content: '+';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.competence.active::after, .parcours-item.active::after {
    content: '-';
    color: var(--accent-color);
    transform: translateX(-50%) rotate(360deg);
}

.competence .details, 
.parcours-item .details {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    display: none;
}

.competence.active .details, 
.parcours-item.active .details {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    display: block;
    overflow: visible;
    width: 100%;
}

.competence .details p, 
.parcours-item .details p {
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}

.competence .details ul, 
.parcours-item .details ul {
    list-style: none;
    padding: 15px 0;
    width: 100%;
    margin: 0;
}

.competence .details li, 
.parcours-item .details li {
    margin-bottom: 8px;
    text-align: center;
    width: 100%;
}

/* Media queries pour la version mobile */
@media screen and (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 20px;
        position: sticky;
        top: 0;
        z-index: 1000;
        min-height: 70px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .logo {
        font-size: 1.4rem;
        flex-grow: 1;
        text-align: center;
        margin: 0;
        font-weight: 600;
    }
    
    /* Réorganisation des éléments d'en-tête pour mobile */
    .header-controls {
        gap: 15px;
        display: flex;
        align-items: center;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .burger-menu {
        display: flex;
        z-index: 1601;
        order: 2;
        font-size: 1.6rem;
        padding: 8px;
        position: relative;
        background: none;
        border: none;
        border-radius: 4px;
        width: auto;
        height: auto;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        min-width: 32px;
        min-height: 32px;
        cursor: pointer;
        pointer-events: auto;
        color: var(--text-color);
    }

    .burger-menu:hover {
        color: var(--primary-color);
        transform: scale(1.1);
    }
    
    /* S'assurer que la flèche reste visible en mode sombre */
    .dark-mode .burger-menu {
        color: var(--text-color);
        background: none;
        cursor: pointer;
        pointer-events: auto;
    }
    
    .dark-mode .burger-menu:hover {
        color: var(--primary-color);
    }
    
    /* Flèche quand le menu est ouvert */
    .dark-mode nav.active ~ .header-controls .burger-menu {
        color: var(--primary-color);
        cursor: pointer;
        pointer-events: auto;
    }

    /* Style du menu rideau */
    nav {
        position: fixed;
        top: -100vh;
        left: 0;
        right: 0;
        height: 70vh;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 70px;
        z-index: 1500;
    }

    nav.active {
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes slideDown {
        from {
            top: -100vh;
        }
        to {
            top: 0;
        }
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s ease;
        transition-delay: 0.1s;
        width: 100%;
        padding: 0;
    }

    nav.active ul {
        opacity: 1;
        transform: translateY(0);
    }

    nav li {
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    nav.active li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
    nav.active li:nth-child(7) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

    /* Style pour les liens du menu */
    nav a {
        font-size: 1.4rem;
        padding: 10px 0;
        display: inline-block;
        width: fit-content;
        position: relative;
        text-align: center;
        color: var(--text-color);
    }

    /* Ligne sous les liens au survol et focus */
    nav a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    nav a:hover::after, nav a:focus::after {
        width: 100%;
    }
    
    /* Placer le bouton de langue sous le bouton EN avec la flèche du burger visible en dessous */
    nav ul li:last-child {
        margin-left: 0;
        margin-top: 15px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    @keyframes bounce-arrow {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(5px); }
    }

    /* Overlay sombre derrière le menu */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0);
        z-index: 1400;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, background-color 0.3s ease;
    }

    body.menu-open::before {
        opacity: 1;
        pointer-events: auto;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
    }

    section {
        padding-top: 100px;
        scroll-margin-top: 80px;
    }

    section h2 {
        margin-top: 0;
    }

    .intro {
        padding-top: 120px;
    }
    
    .intro h2 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .intro p {
        font-size: 1.05rem;
    }

    .scroll-down-btn {
        display: none;
    }

    .competences-container,
    .parcours-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    /* Styles pour le bouton de langue en mode mobile - VISIBLE */
    .language-switch {
        margin-top: 0;
        padding: 6px 12px;
        font-size: 0.9rem;
        display: inline-block;
    }
    
    nav {
        z-index: 1500;
    }

    .competence,
    .parcours-item {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .competences-column,
    .parcours-column {
        width: 100%;
        min-width: 0;
        max-width: none;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        max-width: 45%;
        font-weight: 600;
    }

    .header-controls {
        gap: 15px;
        right: 15px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header {
        padding: 18px 15px;
        min-height: 65px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    section {
        padding: 40px 20px;
    }
    
    .intro {
        padding: 100px 20px 60px;
    }
    
    .intro h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .intro p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 360px) {
    .header-controls {
        gap: 12px;
    }
    
    .logo {
        font-size: 1rem;
        max-width: 40%;
    }
}

.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color var(--transition-fast), 
                box-shadow var(--transition-fast), 
                transform var(--transition-fast);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(83, 166, 230, 0.2);
    outline: none;
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.submit-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: transform var(--transition-medium), 
                box-shadow var(--transition-medium), 
                opacity var(--transition-medium);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    will-change: transform, box-shadow;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    background-color: var(--border-color);
}

.submit-btn.loading {
    text-indent: -9999px;
}

.submit-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s infinite linear;
}

.form-status {
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

.form-status.success {
    background-color: var(--success-color);
    color: white;
}

.form-status.error {
    background-color: var(--error-color);
    color: white;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animation d'apparition au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Alternance des animations pour les lignes paires/impaires */
.competences-column:nth-child(odd) .fade-in,
.parcours-column:nth-child(odd) .fade-in {
    animation: fadeInLeft var(--transition-slow) cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}

.competences-column:nth-child(even) .fade-in,
.parcours-column:nth-child(even) .fade-in {
    animation: fadeInRight var(--transition-slow) cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}

.projets-grid .fade-in {
    animation: fadeInUp var(--transition-slow) cubic-bezier(0.25, 0.1, 0.25, 1.0) forwards;
}

/* Décalage d'animation pour les éléments en liste */
.competence:nth-child(1),
.parcours-item:nth-child(1),
.projet:nth-child(1) {
    animation-delay: 0.1s;
}

.competence:nth-child(2),
.parcours-item:nth-child(2),
.projet:nth-child(2) {
    animation-delay: 0.2s;
}

.competence:nth-child(3),
.parcours-item:nth-child(3),
.projet:nth-child(3) {
    animation-delay: 0.3s;
}

.competence:nth-child(4),
.parcours-item:nth-child(4),
.projet:nth-child(4) {
    animation-delay: 0.4s;
}

.projet:nth-child(5) {
    animation-delay: 0.5s;
}

.projet:nth-child(6) {
    animation-delay: 0.6s;
}

footer {
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-content p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.download a {
    color: var(--text-color);
    text-decoration: none;
    position: relative;
}

.download a::after {
    content: '↓';
    margin-left: 5px;
    font-size: 0.9rem;
}

.download a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    footer {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* Recommandations */
.recommandations-slider {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 800px;
}

.recommandation {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    position: relative;
}

.recommandation-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.recommandation-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: bold;
}

.author-role {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

.projets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.projet {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--card-shadow);
    will-change: transform, box-shadow;
    transition: transform var(--transition-medium), 
                box-shadow var(--transition-medium),
                border-color var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.projet:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-medium);
}

.projet:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-color);
}

.projet:hover:before {
    opacity: 0.03;
}

.projet h3 {
    font-size: 1.2rem;
    margin-top: 0;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.projet:hover h3 {
    color: var(--primary-color);
}

.projet-type {
    font-size: 0.85rem;
    font-weight: normal;
    color: var(--text-color-secondary);
    opacity: 0.8;
    white-space: nowrap;
    margin-left: 5px;
}

.coup-de-coeur {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b9d, #ff8e94);
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    white-space: nowrap;
    text-shadow: none;
    box-shadow: 0 2px 6px rgba(255, 107, 157, 0.3);
    transition: all var(--transition-fast);
    position: relative;
    animation: subtle-pulse 2s ease-in-out infinite;
}

.coup-de-coeur:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.dark-mode .coup-de-coeur {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b9d, #ff8e94);
    box-shadow: 0 2px 6px rgba(255, 107, 157, 0.4);
}

@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.projet-tech {
    color: var(--accent-color);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transform: translateZ(10px);
    transition: transform var(--transition-medium);
}

.projet:hover .projet-tech {
    transform: translateZ(20px);
}

.projet-description {
    line-height: 1.6;
    flex-grow: 1;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
}

.projet-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.projet-links a {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.projet-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: transform var(--transition-medium);
    z-index: -1;
}

.projet-links a:hover {
    color: white;
    border-color: transparent;
}

.projet-links a:hover:before {
    transform: translateX(100%);
}

@media screen and (max-width: 768px) {
    .projets-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.language-switch {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.language-switch:hover {
    background-color: #e0e0e0;
}

.dark-mode .language-switch {
    background-color: #333333;
    color: #ffffff;
}

.dark-mode .language-switch:hover {
    background-color: #444444;
}

nav ul li:last-child {
    margin-left: 15px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 768px) {
    .header-controls {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    /* Pas de règles theme-toggle ici - elles sont dans la version unifiée */
}

@media screen and (max-width: 360px) {
    /* Pas de règles theme-toggle ici - elles sont dans la version unifiée */
}

.dark-mode .logo {
    color: var(--primary-color);
}

/* Styles pour le contenu principal */
main {
    padding: 0 15px;
}

/* Augmenter le z-index du menu */
nav {
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    nav {
        z-index: 1500;
    }
}

/* Effets glass morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.dark-mode .glass-effect {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Background subtil */
body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(42, 100, 150, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(42, 100, 150, 0.08), transparent 25%);
    pointer-events: none;
    z-index: -1;
}

.dark-mode body:before {
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(83, 166, 230, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(83, 166, 230, 0.05), transparent 25%);
}

/* Supprimer les styles du curseur personnalisé et s'assurer que le curseur standard est utilisé partout */
html, body, a, button, .competence, .projet, .parcours-item {
    cursor: auto; /* Revenir au curseur par défaut du navigateur */
}

/* Spécifier le curseur pointer pour les éléments interactifs */
a, button, .competence, .projet, .parcours-item {
    cursor: pointer;
}

/* Masquer complètement les éléments du curseur personnalisé */
.cursor-dot,
.cursor-dot-outline {
    display: none !important;
}

/* Patterns et fonds améliorés */
.pattern-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(var(--accent-color-rgb), 0.2) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb), 0.2) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

.pattern-dots {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(var(--primary-color-rgb), 0.25) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
}

.dark-mode .pattern-grid {
    background-image: 
        linear-gradient(rgba(var(--secondary-color-rgb), 0.25) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(var(--secondary-color-rgb), 0.25) 1.5px, transparent 1.5px);
    opacity: 0.2;
}

.dark-mode .pattern-dots {
    background-image: radial-gradient(rgba(var(--secondary-color-rgb), 0.25) 1.5px, transparent 1.5px);
    opacity: 0.12;
}

/* Animation de texte pour les titres avec GSAP */
.text-reveal {
    position: relative;
    overflow: hidden;
}

.text-reveal span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.text-reveal.revealed span {
    transform: translateY(0);
}

/* Effets visuels pour les projets */
.projet .projet-tech {
    transition: transform var(--transition-medium);
}

.projet:hover .projet-tech {
    transform: translateY(-2px);
}

/* Section À propos de moi - Style Apple */
.about-me {
    min-height: auto;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-me h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.about-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    z-index: -1;
    transform: scale(0.98);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.dark-mode .about-content::before {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    transform: translateZ(20px);
    transition: transform var(--transition-medium);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    transform: translateZ(10px);
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.about-text p:nth-child(1) {
    transition-delay: 0.1s;
}

.about-text p:nth-child(2) {
    transition-delay: 0.2s;
}

.about-text p:nth-child(3) {
    transition-delay: 0.3s;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 600;
    display: inline;
    position: relative;
    overflow: hidden;
    vertical-align: baseline;
}

.about-text p strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.about-text p:hover strong::after {
    transform: scaleX(1);
    transform-origin: left;
}

.about-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/5;
    transform: translateZ(30px) rotateY(-5deg);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-content:hover .about-image {
    transform: translateZ(50px) rotateY(-2deg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    will-change: transform;
    transition: transform 0.5s ease-out;
    filter: brightness(1.05) contrast(1.05);
}

.about-content:hover .about-image img {
    transform: scale(1.03);
}

.about-parallax {
    will-change: transform;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.about-content:hover .about-image::before {
    opacity: 0.5;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 20px;
    transform: translateZ(40px);
    transition: transform var(--transition-medium);
}

.about-content:hover .about-stats {
    transform: translateZ(60px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(var(--background-color-rgb), 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    transition: all var(--transition-medium);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color-secondary);
    text-align: center;
}

.objectif-2025 {
    margin-top: 40px;
    padding: 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
    width: 100%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.objectif-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 0 2px 2px 0;
}

.objectif-2025:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.objectif-2025 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.objectif-2025 p {
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
    padding-left: 15px;
    font-size: 0.95rem;
}

.dark-mode .objectif-2025 {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.dark-mode .objectif-2025 h3 {
    color: var(--primary-color);
}

.dark-mode .objectif-2025 p {
    color: #ffffff;
}

@media screen and (max-width: 768px) {
    .about-content {
        max-width: 100%;
        padding: 0 20px;
        perspective: none;
        transform-style: flat;
    }
    .about-text, .about-stats {
        transform: none !important;
    }
    .about-text {
        padding: 30px 20px;
        font-size: 1rem;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .about-me {
        padding: 60px 20px;
    }
    .about-me h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }
    .about-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        align-items: center;
        width: 100%;
    }
    .stat-item {
        width: 100%;
        max-width: 300px;
        min-width: 0;
        padding: 15px;
        font-size: 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    
    .objectif-2025 {
        margin-top: 30px;
        padding: 20px;
        border-radius: 8px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .objectif-2025 h3 {
        font-size: 1.2rem;
        padding-left: 12px;
    }
    
    .objectif-2025 p {
        padding-left: 12px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .about-me {
        padding: 40px 15px;
    }
    .about-text {
        padding: 20px 15px;
        font-size: 0.98rem;
    }
    .about-me h2 {
        font-size: 1.8rem;
    }
    .about-stats {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    .stat-item {
        max-width: 100%;
        padding: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    
    .objectif-2025 {
        margin-top: 25px;
        padding: 18px;
        border-radius: 8px;
    }
    
    .objectif-2025 h3 {
        font-size: 1.1rem;
        padding-left: 10px;
        margin-bottom: 12px;
    }
    
    .objectif-2025 p {
        padding-left: 10px;
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

/* Styles pour le reptile interactif */
.reptile-cursor {
    position: fixed;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.15;
    transition: opacity 0.3s ease;
    mix-blend-mode: difference;
}

.reptile-cursor svg {
    width: 100%;
    height: 100%;
    fill: #000000;
    transition: fill 0.3s ease;
}

.dark-mode .reptile-cursor svg {
    fill: #ffffff;
}

.reptile-cursor.moving {
    opacity: 0.25;
}

/* Ajustement pour que le reptile reste derrière les éléments */
.glass-effect,
.competence,
.projet,
.parcours-item {
    position: relative;
    z-index: 1;
}

/* Styles pour le theme-toggle - version unifiée */
.theme-toggle {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 4px;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    left: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translateX(0);
    transition: transform 0.3s ease, background-color 0.3s ease;
    z-index: 2;
}

.dark-mode .theme-toggle {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dark-mode .theme-toggle::before {
    transform: translateX(20px);
    background-color: var(--secondary-color);
}

/* Afficher la lune/soleil */
.theme-toggle &gt; span {
    position: absolute;
    left: 7px;
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
}

.theme-toggle::after {
    content: '☼';
    position: absolute;
    right: 6px;
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
}

.theme-toggle:hover {
    opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .theme-toggle {
        width: 54px;
        height: 28px;
        border-radius: 14px;
        margin-right: 18px;
    }
    
    .theme-toggle::before {
        width: 20px;
        height: 20px;
        left: 4px;
    }
    
    .theme-toggle &gt; span {
        left: 8px;
        font-size: 13px;
    }
    
    .theme-toggle::after {
        right: 8px;
        font-size: 13px;
    }
    
    .dark-mode .theme-toggle::before {
        transform: translateX(26px);
    }

    .header-controls {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .theme-toggle {
        width: 50px;
        height: 26px;
        margin-right: 15px;
    }
    
    .dark-mode .theme-toggle::before {
        transform: translateX(22px);
    }
}

@media screen and (max-width: 360px) {
    .theme-toggle {
        width: 48px;
        height: 24px;
        margin-right: 12px;
    }
    
    .dark-mode .theme-toggle::before {
        transform: translateX(20px);
    }
}

/* Forcer le mode sombre sur TOUS les éléments importants sur mobile */
@media screen and (max-width: 768px) {
    .dark-mode {
        background-color: #0f0f0f !important;
        color: #ffffff !important;
    }
    
    .dark-mode body,
    .dark-mode header,
    .dark-mode nav,
    .dark-mode .competence,
    .dark-mode .parcours-item,
    .dark-mode .projet,
    .dark-mode .about-me,
    .dark-mode section,
    .dark-mode main {
        background-color: #0f0f0f !important;
        color: #ffffff !important;
        border-color: #333333 !important;
    }
    
    .dark-mode .theme-toggle {
        background-color: var(--card-bg) !important;
        border: 1px solid var(--border-color) !important;
    }
    
    .dark-mode .burger-menu {
        color: var(--text-color) !important;
        background: none !important;
        pointer-events: auto !important;
        z-index: 1601 !important;
    }
    
    .dark-mode nav.active ~ .header-controls .burger-menu {
        color: var(--primary-color) !important;
        pointer-events: auto !important;
        z-index: 1601 !important;
    }
    
    /* Forcer l'application immédiate sur tous les éléments de texte */
    .dark-mode p,
    .dark-mode h1,
    .dark-mode h2,
    .dark-mode h3,
    .dark-mode h4,
    .dark-mode h5,
    .dark-mode h6,
    .dark-mode span,
    .dark-mode div,
    .dark-mode a {
        color: #ffffff !important;
    }
    
    .dark-mode a:hover {
        color: #4a9eff !important;
    }
    
    /* Forcer les bordures sombres */
    .dark-mode * {
        border-color: #333333 !important;
    }
}

</pre></body></html>