/* RESET ET VARIABLES */
        :root {
            --primary-pink: #FF6B8B;
            --primary-blue: #4169E1;
            --accent-pink: #FF8EAB;
            --accent-blue: #87CEEB;
            --soft-pink: #FFB8D9;
            --light-gray: #F8F9FA;
            --dark-gray: #2C3E50;
            --text-primary: #2C3E50;
            --text-secondary: #5D7692;
            --bg-gradient: linear-gradient(135deg, #FFB8D9 0%, #FF528D 100%);
            --bg-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0F1624 100%);
            --card-bg: rgba(255, 255, 255, 0.95);
            --card-bg-dark: rgba(30, 30, 46, 0.95);
            --navbar-bg: rgba(255, 255, 255, 0.98);
            --navbar-bg-dark: rgba(30, 30, 46, 0.98);            --text-light: #F8F9FA;
            --text-dark: #2C3E50;

            --border-radius-sm: 12px;
            --border-radius-md: 20px;
            --border-radius-lg: 30px;
            --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
            --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-medium: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .dark-mode {
            --bg-gradient: var(--bg-gradient-dark);
            --bg-gradient-light: linear-gradient(135deg, #FFB8D9 0%, #FF528D 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B8C1EC;
            --card-bg: var(--card-bg-dark);
            --navbar-bg: var(--navbar-bg-dark);
            --light-gray: #1E293B;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
            background: var(--bg-gradient); /* Utilise la variable pour le fond */
            color: var(--text-primary);
            min-height: 100vh;
            transition: background var(--transition-slow), color var(--transition-slow);
            cursor: none !important;
            padding-top: 80px;
        }
        
        /* ANIMATIONS */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes textPulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.02);
            }
        }
        
        @keyframes sakuraBlossom {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
                filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
            }
            50% { 
                transform: scale(1.3) rotate(15deg); 
                filter: drop-shadow(0 6px 15px rgba(255, 255, 255, 0.6));
            }
        }
        
        @keyframes sakuraFallFloat {
            0% {
                transform: translateY(-100px) rotate(0deg) scale(0.8);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            100% {
                transform: translateY(100vh) rotate(360deg) scale(1.2);
                opacity: 0;
            }
        }
        
        @keyframes sakuraPop {
            0% {
                transform: scale(0);
                opacity: 1;
            }
            50% {
                transform: scale(1.5);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 0;
            }
        }
        
        @keyframes sakuraTreeBlossom {
            0%, 100% { 
                transform: scale(1); 
                filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            }
            50% { 
                transform: scale(1.1); 
                filter: drop-shadow(0 4px 8px rgba(255, 107, 139, 0.4));
            }
        }
        
        @keyframes waveHand {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(15deg); }
            50% { transform: rotate(0deg); }
            75% { transform: rotate(-10deg); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        /* NOUVELLE ANIMATION POUR LE CURSEUR QUI NAVIGUE VERS LE PROJET */
        @keyframes cursorNavigate {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(var(--target-x), var(--target-y)) scale(0.8);
                opacity: 0.8;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
        }
        
        /* CURSEUR FLEUR DE SAKURA PERMANENT */
        .sakura-cursor {
            position: fixed;
            width: 60px;
            height: 60px;
            pointer-events: none;
            z-index: 99999;
            font-size: 48px;
            text-shadow: 0 2px 10px rgba(255, 107, 139, 0.5);
            filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.6));
            opacity: 1;
            animation: float 3s ease-in-out infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translate(-50%, -50%);
            cursor: none !important;
            transition: transform 0.3s ease, font-size 0.3s ease;
        }
        
        .sakura-cursor.navigating {
            animation: cursorNavigate 1s ease-in-out;
        }
        
        .sakura-float {
            position: fixed;
            width: 60px;
            height: 60px;
            pointer-events: none;
            z-index: 9998;
            font-size: 48px;
            color: #FFFFFF;
            filter: drop-shadow(0 0 15px rgba(255, 107, 139, 0.7));
            opacity: 0;
            animation: sakuraFallFloat 3s ease-out forwards;
        }
        
        .sakura-pop {
            position: fixed;
            width: 80px;
            height: 80px;
            pointer-events: none;
            z-index: 9998;
            font-size: 64px;
            color: #FFFFFF;
            filter: drop-shadow(0 0 20px rgba(255, 107, 139, 0.9));
            opacity: 0;
            animation: sakuraPop 0.8s ease-out forwards;
        }
        
        /* ÉCRAN DE CHARGEMENT - MODIFICATIONS */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--soft-pink);
            background-image: var(--bg-gradient);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
            cursor: none !important;
            overflow: hidden;
        }
        
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        /* AJOUT: Conteneur pour la vidéo YouTube en arrière-plan */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh; /* Utiliser 100vh pour s'assurer qu'il couvre toute la hauteur de la fenêtre */
            z-index: -1;
            overflow: hidden;
            position: fixed; /* Fixer la vidéo en arrière-plan */
        }
        /* AJOUT: Overlay pour assombrir la vidéo et améliorer la lisibilité */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(2px); /* Un léger flou pour adoucir la vidéo */
            z-index: 1;
        }
        
        /* AJOUT: Style pour l'iframe YouTube */
        .youtube-iframe {
            position: absolute;
            top: 50%;
            left: 50%; /* Centrer la vidéo */
            width: 100vw;
            height: 56.25vw; /* Ratio 16:9 */
            min-height: 100vh;
            min-width: 177.77vh; /* Assurer que la vidéo couvre toute la largeur/hauteur */
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .loading-content {
            text-align: center;
            animation: fadeIn 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            cursor: none !important; /* Le curseur personnalisé gère ça */
            position: relative;
            z-index: 2; /* S'assurer que le contenu est au-dessus de la vidéo */
        }
        
        /* PERSONNAGE INTERACTIF */
        .character-container {
            position: relative;
            margin-bottom: 20px;
            cursor: none !important;
        } /* Le curseur personnalisé gère ça */
        
        .character-img {
            width: 180px;
            height: auto;
            animation: bounce 2s ease-in-out infinite;
            cursor: none !important;
            filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .character-wave {
            position: absolute;
            top: -40px;
            right: -30px;
            font-size: 3rem;
            animation: waveHand 1.5s ease-in-out infinite;
            opacity: 0.9;
            cursor: none !important;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); /* Le curseur personnalisé gère ça */
        }
        
        .sakura-loader {
            margin: 40px auto 0;
            padding: 0;
            background-color: transparent;
            border-radius: 0;
            box-shadow: none;
            cursor: none !important; /* Le curseur personnalisé gère ça */
        }

        .sakura-container {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            cursor: none !important; /* Le curseur personnalisé gère ça */
        }

        .sakura-icon {
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
            cursor: none !important; /* Le curseur personnalisé gère ça */
            opacity: 0.5;
        }

        .sakura-icon.filled {
            color: #FFFFFF;
            opacity: 1;
            transform: scale(1.3);
            filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.7));
            animation: sakuraBlossom 0.8s ease-in-out infinite;
        }
        
        .loading-text {
            font-family: 'Quicksand', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: 10px;
            text-transform: uppercase;
            margin: 0;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Le curseur personnalisé gère ça */
            animation: textPulse 2s ease-in-out infinite;
            cursor: none !important; /* Le curseur personnalisé gère ça */
        }

        .loading-url {
            font-family: 'Nunito', sans-serif;
            font-size: 1.5rem; /* Le curseur personnalisé gère ça */
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 4px;
            margin: 0;
            font-weight: 500;
            transition: color var(--transition-slow);
            cursor: none !important;
        }
        
        #mainContent {
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        #mainContent.loaded {
            opacity: 1;
        }
        
        /* ARBRE DE SAKURA FIXE POUR LA NAVIGATION */
        .sakura-tree-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            pointer-events: none;
        }
        
        .sakura-tree-branch {
            position: relative;
            width: 4px;
            height: 300px;
            background: linear-gradient(to bottom, #8B4513, #A0522D);
            border-radius: 2px;
            margin: 0 auto;
        }
        
        .sakura-tree-node {
            position: absolute;
            width: 40px;
            height: 40px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-medium);
            left: 50%;
            transform: translateX(-50%);
            pointer-events: auto;
        }
        
        .sakura-tree-node i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.3);
            transition: all var(--transition-medium);
        }
        
        .sakura-tree-node.active i {
            color: var(--primary-pink);
            animation: sakuraTreeBlossom 1s ease-in-out infinite;
        }
        
        .sakura-tree-node:hover i {
            color: var(--accent-pink);
            transform: scale(1.2);
        }
        
        /* ===========================================
           SECTION COMPÉTENCES
        ============================================ */
        #skills {
            padding: 100px 20px;
            position: relative;
        }
        
        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .skills-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .skills-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue)); /* Le curseur personnalisé gère ça */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        
        .skills-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .skills-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius-lg); /* Le curseur personnalisé gère ça */
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .filter-btn {
            padding: 12px 28px;
            background: transparent;
            border: 2px solid rgba(255, 107, 139, 0.2);
            border-radius: 50px;
            font-weight: 600; /* Le curseur personnalisé gère ça */
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        .filter-btn:hover {
            background: rgba(255, 107, 139, 0.1);
            border-color: var(--primary-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.2);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(255, 107, 139, 0.3);
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .skill-card {
            height: 400px;
            perspective: 1500px;
            position: relative;
            cursor: pointer;
        }
        
        .card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
        }
        /* Le curseur personnalisé gère ça */
        .skill-card:hover .card-inner {
            transform: rotateY(10deg);
        }
        
        .skill-card.flipped .card-inner {
            transform: rotateY(180deg);
        }
        
        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .card-front {
            background: var(--card-bg);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        .skill-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 107, 139, 0.1), rgba(65, 105, 225, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center; /* Le curseur personnalisé gère ça */
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.5rem;
            color: var(--primary-pink);
            transition: all 0.3s ease;
        }
        
        .skill-card:hover .skill-icon {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
        }
        
        .skill-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            transition: all 0.3s ease;
        }
        
        .skill-card:hover .skill-icon img {
            filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
        }
        
        .skill-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        
        .skill-category {
            color: var(--primary-pink);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 25px;
            padding: 6px 18px;
            background: rgba(255, 107, 139, 0.1);
            border-radius: 50px;
            letter-spacing: 0.5px;
        }
        
        .skill-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 0.95rem;
            flex-grow: 1; /* Le curseur personnalisé gère ça */
        }
        
        .flip-hint {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-pink);
            font-size: 0.9rem;
            font-weight: 600;
            opacity: 0.8;
            transition: opacity 0.3s ease; /* Le curseur personnalisé gère ça */
        }
        
        .flip-hint i {
            transition: transform 0.3s ease;
        }
        
        .skill-card:hover .flip-hint i {
            transform: translateX(5px);
        }
        
        .card-back {
            background: linear-gradient(135deg, var(--card-bg), rgba(255, 255, 255, 0.9));
            border: 2px solid var(--primary-pink);
            transform: rotateY(180deg);
            position: relative;
        } /* Le curseur personnalisé gère ça */
        
        .card-back::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            border-radius: var(--border-radius-lg);
            z-index: -1;
            opacity: 0.3; /* Le curseur personnalisé gère ça */
        }
        
        .mastery-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 20px;
        }
        /* Le curseur personnalisé gère ça */
        .progress-container {
            width: 150px;
            height: 150px;
            margin: 20px auto 30px;
            position: relative;
        }
        
        .progress-circle { /* Le curseur personnalisé gère ça */
            transform: rotate(-90deg);
        }
        
        .progress-bg {
            fill: none;
            stroke: rgba(255, 107, 139, 0.1);
            stroke-width: 8;
        } /* Le curseur personnalisé gère ça */
        
        .progress-bar {
            fill: none;
            stroke-linecap: round;
            stroke-dasharray: 377;
            stroke-dashoffset: 377;
            transition: stroke-dashoffset 1.5s ease;
            stroke-width: 8; /* Le curseur personnalisé gère ça */
        }
        
        .progress-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2.5rem;
            font-weight: 800; /* Le curseur personnalisé gère ça */
            color: var(--primary-pink);
        }
        
        .progress-label {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: -15px;
        } /* Le curseur personnalisé gère ça */
        
        .skill-level {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px; /* Le curseur personnalisé gère ça */
            box-shadow: 0 4px 15px rgba(255, 107, 139, 0.3);
        }
        
        .no-skills {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px;
            background: rgba(255, 255, 255, 0.1); /* Le curseur personnalisé gère ça */
            border-radius: var(--border-radius-lg);
            border: 2px dashed rgba(255, 107, 139, 0.3);
            margin: 30px 0;
        }
        
        .no-skills i {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 20px; /* Le curseur personnalisé gère ça */
            opacity: 0.5;
        }
        
        .no-skills p {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }
        /* Le curseur personnalisé gère ça */
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .skill-card {
            animation: floatCard 6s ease-in-out infinite;
        } /* Le curseur personnalisé gère ça */
        
        .skill-card:nth-child(2) { animation-delay: 0.5s; }
        .skill-card:nth-child(3) { animation-delay: 1s; }
        .skill-card:nth-child(4) { animation-delay: 1.5s; }
        .skill-card:nth-child(5) { animation-delay: 2s; }
        .skill-card:nth-child(6) { animation-delay: 2.5s; }
        .skill-card:nth-child(7) { animation-delay: 3s; }
        .skill-card:nth-child(8) { animation-delay: 3.5s; }
        .skill-card:nth-child(9) { animation-delay: 4s; }
        .skill-card:nth-child(10) { animation-delay: 4.5s; }
        .skill-card:nth-child(11) { animation-delay: 5s; }
        .skill-card:nth-child(12) { animation-delay: 5.5s; }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .skill-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0; /* Le curseur personnalisé gère ça */
        }
        
        .skill-card:nth-child(1) { animation-delay: 0.1s; }
        .skill-card:nth-child(2) { animation-delay: 0.2s; }
        .skill-card:nth-child(3) { animation-delay: 0.3s; }
        .skill-card:nth-child(4) { animation-delay: 0.4s; }
        .skill-card:nth-child(5) { animation-delay: 0.5s; }
        .skill-card:nth-child(6) { animation-delay: 0.6s; }
        .skill-card:nth-child(7) { animation-delay: 0.7s; }
        .skill-card:nth-child(8) { animation-delay: 0.8s; }
        .skill-card:nth-child(9) { animation-delay: 0.9s; }
        .skill-card:nth-child(10) { animation-delay: 1.0s; }
        .skill-card:nth-child(11) { animation-delay: 1.1s; }
        .skill-card:nth-child(12) { animation-delay: 1.2s; }
        
        /* ===========================================
            NAVIGATION FIXE EN HAUT
        =========================================== */
        .cute-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10000;
            padding: 1rem 0;
            background: var(--navbar-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            animation: fadeIn 0.5s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        } /* Le curseur personnalisé gère ça */

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        /* Le curseur personnalisé gère ça */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary); /* Le curseur personnalisé gère ça */
            cursor: none;
        }

        .logo-icon {
            font-size: 2rem;
            color: var(--primary-pink);
            animation: rotate 10s linear infinite;
        } /* Le curseur personnalisé gère ça */

        .nav-menu {
            display: flex;
            gap: 1.5rem;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius-md);
            transition: all var(--transition-medium);
            position: relative; /* Le curseur personnalisé gère ça */
            cursor: none;
        }

        .nav-item:hover {
            color: var(--primary-pink);
            background: rgba(255, 107, 139, 0.1);
        }

        .nav-item.active {
            color: var(--primary-pink);
        }
        /* Le curseur personnalisé gère ça */
        .nav-item.active .nav-dot {
            opacity: 1;
            transform: scale(1);
        }

        .nav-icon {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
        } /* Le curseur personnalisé gère ça */

        .nav-label {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .nav-dot {
            position: absolute;
            bottom: -5px;
            width: 6px;
            height: 6px;
            background: var(--primary-pink);
            border-radius: 50%; /* Le curseur personnalisé gère ça */
            opacity: 0;
            transform: scale(0);
            transition: all var(--transition-medium);
        }

        .nav-actions {
            display: flex;
            gap: 0.75rem;
        }

        .cute-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%; /* Le curseur personnalisé gère ça */
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            cursor: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-medium); /* Le curseur personnalisé gère ça */
            backdrop-filter: blur(10px);
        }

        .cute-btn:hover {
            background: var(--primary-pink);
            color: white;
            transform: scale(1.1);
        }

        /* ===========================================
            SECTIONS PORTFOLIO
        =========================================== */
        .portfolio-container {
            display: block;
            opacity: 1;
        } /* Le curseur personnalisé gère ça */

        .portfolio-section {
            min-height: calc(100vh - 80px);
            padding: 4rem 2rem 4rem;
            position: relative;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        } /* Le curseur personnalisé gère ça */

        .about-image-container {
            position: relative;
        }

        .about-image-frame {
            width: 450px;
            height: 450px;
            background: transparent; /* Le curseur personnalisé gère ça */
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            border: 8px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: calc(var(--border-radius-lg) - 4px); /* Le curseur personnalisé gère ça */
            transition: transform var(--transition-medium);
            background: transparent;
        }

        .about-image-frame:hover .profile-image {
            transform: scale(1.05);
        }

        .frame-decoration {
            position: absolute;
            background: var(--primary-pink);
            border-radius: 50%; /* Le curseur personnalisé gère ça */
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center; /* Le curseur personnalisé gère ça */
            gap: 1rem;
        }

        .title-number {
            font-size: 1.5rem;
            color: var(--primary-pink);
            opacity: 0.5;
        } /* Le curseur personnalisé gère ça */

        .about-description {
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .about-description p {
            margin-bottom: 1rem;
        }

        .about-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        } /* Le curseur personnalisé gère ça */

        .detail-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            background: var(--card-bg);
            border-radius: var(--border-radius-sm);
            box-shadow: var(--shadow-sm); /* Le curseur personnalisé gère ça */
            cursor: none;
        }

        .detail-item i {
            color: var(--primary-pink);
            font-size: 1.2rem;
        }

        /* ===========================================
           NOUVELLE SECTION PARCOURS AVEC TIMELINE AMÉLIORÉE
        ============================================ */
        #journey {
            padding: 100px 20px;
            position: relative;
        }
        
        .journey-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .journey-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .journey-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        
        .journey-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        /* STYLE POUR LES ÉTAPES DU PARCOURS (inspiré de la camarade) */
        .journey-steps {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            padding-left: 30px;
            margin-top: 2rem;
        }
        
        .journey-steps::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-pink), var(--primary-blue));
            border-radius: 2px; /* Le curseur personnalisé gère ça */
        }
        
        .journey-step {
            position: relative;
            padding: 2rem;
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            border-left: 4px solid var(--primary-pink); /* Le curseur personnalisé gère ça */
            transition: all 0.3s ease;
            cursor: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .journey-step:hover {
            transform: translateX(10px);
            background: rgba(255, 107, 139, 0.05);
            box-shadow: var(--shadow-lg);
        }
        
        .journey-step::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 2.5rem;
            width: 15px;
            height: 15px;
            background: var(--primary-pink); /* Le curseur personnalisé gère ça */
            border-radius: 50%;
            border: 3px solid var(--card-bg);
            box-shadow: 0 0 0 3px var(--primary-pink);
        }
        
        .step-image {
            flex: 0 0 200px;
            height: 150px;
            border-radius: var(--border-radius-md);
            overflow: hidden; /* Le curseur personnalisé gère ça */
            box-shadow: var(--shadow-md);
        }
        
        .step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .journey-step:hover .step-image img {
            transform: scale(1.05);
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-date {
            display: inline-block;
            padding: 6px 15px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            border-radius: 20px; /* Le curseur personnalisé gère ça */
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(255, 107, 139, 0.3);
        }
        
        .step-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .step-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center; /* Le curseur personnalisé gère ça */
            gap: 8px;
        }
        
        .step-subtitle i {
            color: var(--primary-pink);
        }
        
        .step-description {
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }
        
        .step-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1.5rem;
        }
        
        .step-highlight {
            padding: 8px 16px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 20px; /* Le curseur personnalisé gère ça */
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .step-highlight:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateY(-2px);
        }
        
        .step-highlight.tech {
            background: rgba(65, 105, 225, 0.1);
            color: var(--primary-blue);
        }
        
        .step-highlight.tech:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .step-highlight.design {
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
        }
        
        .step-highlight.design:hover {
            background: var(--primary-pink);
            color: white;
        }
        
        .journey-quote {
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 107, 139, 0.05), rgba(65, 105, 225, 0.05));
            border-radius: var(--border-radius-md);
            border-left: 4px solid var(--primary-pink);
            position: relative;
        }
        
        .journey-quote::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-pink);
            opacity: 0.3; /* Le curseur personnalisé gère ça */
            font-family: serif;
        }
        
        .quote-text {
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.6;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }
        
        .quote-author {
            text-align: right;
            color: var(--text-secondary);
            font-weight: 600;
        }
        
        /* Responsive pour la timeline */
        @media (max-width: 768px) {
            .journey-steps {
                padding-left: 25px;
            }
            
            .journey-step::before {
                left: -31px;
            }
            
            .journey-step {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .step-image {
                width: 100%;
                flex: 0 0 auto;
                height: 180px;
            }
            
            .step-title {
                font-size: 1.5rem;
            }
            
            .journey-quote {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .journey-step {
                padding: 1.5rem;
            }
            
            .step-title {
                font-size: 1.3rem;
            }
            
            .step-description {
                font-size: 0.95rem;
            }
        }

        /* ===========================================
           SECTION PROJETS AMÉLIORÉE
        ============================================ */
        #projects {
            padding: 100px 20px;
            position: relative;
        }
        
        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .projects-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .projects-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }
        
        .projects-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .projects-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .project-filter-btn {
            padding: 12px 28px;
            background: transparent;
            border: 2px solid rgba(255, 107, 139, 0.2);
            border-radius: 50px;
            font-weight: 600;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }
        
        .project-filter-btn:hover {
            background: rgba(255, 107, 139, 0.1);
            border-color: var(--primary-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.2);
        }
        
        .project-filter-btn.active {
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(255, 107, 139, 0.3);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .project-card {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            overflow: hidden; /* Le curseur personnalisé gère ça */
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            cursor: pointer;
            height: 450px;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        
        .project-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue)); /* Le curseur personnalisé gère ça */
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-card:hover .project-image {
            transform: scale(1.05);
        }
        
        .project-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column; /* Le curseur personnalisé gère ça */
        }
        
        .project-type {
            display: inline-block;
            padding: 6px 15px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 50px; /* Le curseur personnalisé gère ça */
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            align-self: flex-start;
            transition: all 0.3s ease;
        }
        
        .project-card:hover .project-type {
            background: var(--primary-pink);
            color: white;
        }
        
        .project-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        
        .project-card:hover .project-name {
            color: var(--primary-pink);
        }
        
        .project-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
            font-size: 0.95rem;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .project-tag {
            font-size: 0.8rem;
            padding: 5px 12px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary); /* Le curseur personnalisé gère ça */
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .project-card:hover .project-tag {
            transform: translateY(-2px);
        }
        
        .project-tag.tech {
            background: rgba(65, 105, 225, 0.1);
            color: var(--primary-blue);
        }
        
        .project-tag.design {
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
        }
        
        .project-tag.video {
            background: rgba(153, 153, 255, 0.1);
            color: #9999FF;
        }
        
        .project-year {
            font-size: 0.9rem;
            color: var(--primary-pink);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .project-card:hover .project-year {
            transform: translateX(5px);
        }
        
        .project-year i {
            font-size: 0.8rem;
        }
        
        .project-detail-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 10px; /* Le curseur personnalisé gère ça */
            align-self: flex-start;
        }
        
        .project-detail-link:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateY(-2px);
            gap: 12px;
        }
        
        .no-projects {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px;
            background: rgba(255, 255, 255, 0.1); /* Le curseur personnalisé gère ça */
            border-radius: var(--border-radius-lg);
            border: 2px dashed rgba(255, 107, 139, 0.3);
            margin: 30px 0;
        }
        
        .no-projects i {
            font-size: 3rem;
            color: var(--primary-pink);
            margin-bottom: 20px; /* Le curseur personnalisé gère ça */
            opacity: 0.5;
        }
        
        .no-projects p {
            color: var(--text-secondary);
            font-size: 1.2rem;
        }
        
        /* MODAL POUR LES DÉTAILS DES PROJETS */
        .project-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100000;
            opacity: 0;
            visibility: hidden; /* Le curseur personnalisé gère ça */
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 20px;
        }
        
        .project-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .project-modal-content {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto; /* Le curseur personnalisé gère ça */
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: translateY(50px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .project-modal.active .project-modal-content {
            transform: translateY(0);
        }
        
        .project-modal-header {
            padding: 30px 40px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        
        .project-modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 107, 139, 0.1);
            border: none;
            color: var(--primary-pink);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .project-modal-close:hover {
            background: var(--primary-pink);
            color: white;
            transform: rotate(90deg);
        }
        
        .project-modal-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .project-modal-subtitle {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-secondary);
            font-size: 1.1rem;
        }
        
        .project-modal-body {
            padding: 30px 40px;
        }
        
        .project-modal-image {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            border-radius: var(--border-radius-md);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .project-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-modal-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }
        
        .project-modal-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .detail-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-sm);
            padding: 20px;
            border-left: 4px solid var(--primary-pink);
        }
        
        .detail-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .detail-label i {
            color: var(--primary-pink);
        }
        
        .detail-value {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .project-modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }
        
        .modal-tag {
            padding: 8px 16px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .modal-tag.tech {
            background: rgba(65, 105, 225, 0.1);
            color: var(--primary-blue);
        }
        
        .modal-tag.design {
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
        }
        
        .modal-tag.video {
            background: rgba(153, 153, 255, 0.1);
            color: #9999FF;
        }
        
        .project-redirect-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .project-redirect-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 139, 0.3);
            gap: 15px;
        }
        
        @keyframes floatProject {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        
        .project-card {
            animation: floatProject 6s ease-in-out infinite;
        } /* Le curseur personnalisé gère ça */
        
        .project-card:nth-child(2) { animation-delay: 0.5s; }
        .project-card:nth-child(3) { animation-delay: 1s; }
        .project-card:nth-child(4) { animation-delay: 1.5s; }
        .project-card:nth-child(5) { animation-delay: 2s; }
        .project-card:nth-child(6) { animation-delay: 2.5s; }
        .project-card:nth-child(7) { animation-delay: 3s; }
        .project-card:nth-child(8) { animation-delay: 3.5s; }
        .project-card:nth-child(9) { animation-delay: 4s; }
        .project-card:nth-child(10) { animation-delay: 4.5s; }
        
        .project-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0; /* Le curseur personnalisé gère ça */
        }
        
        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.2s; }
        .project-card:nth-child(3) { animation-delay: 0.3s; }
        .project-card:nth-child(4) { animation-delay: 0.4s; }
        .project-card:nth-child(5) { animation-delay: 0.5s; }
        .project-card:nth-child(6) { animation-delay: 0.6s; }
        .project-card:nth-child(7) { animation-delay: 0.7s; }
        .project-card:nth-child(8) { animation-delay: 0.8s; }
        .project-card:nth-child(9) { animation-delay: 0.9s; }
        .project-card:nth-child(10) { animation-delay: 1.0s; }

        /* NOUVEAUX STYLES POUR LA SECTION CONTACT */
        .contact-section-special {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .contact-section-special::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
        }

        .contact-header-special {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-title-special {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .contact-subtitle-special {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .contact-grid-special {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .contact-info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-md);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all var(--transition-medium);
            cursor: none;
        }

        .contact-info-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 107, 139, 0.05);
            border-color: var(--primary-pink);
        }

        .contact-info-icon {
            font-size: 2rem;
            color: var(--primary-pink);
            margin-bottom: 1rem;
        }

        .contact-info-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-info-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .contact-message-box {
            background: linear-gradient(135deg, rgba(255, 107, 139, 0.05), rgba(65, 105, 225, 0.05));
            border-radius: var(--border-radius-md);
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-pink);
        }

        .contact-message-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .contact-message-text {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .contact-interests {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .interest-tag {
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all var(--transition-medium);
            cursor: none;
        }

        .interest-tag:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateY(-2px);
        }

        .contact-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition-medium);
            margin-top: 2rem;
            cursor: none;
            border: none;
            font-size: 1rem;
        }

        .contact-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            gap: 1rem;
        }

        /* Footer */
        .cute-footer {
            background: var(--card-bg);
            padding: 4rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
        }

        .footer-logo i {
            color: var(--primary-pink);
        }

        .footer-text {
            color: var(--text-secondary);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color var(--transition-medium);
            cursor: none;
        }

        .footer-links a:hover {
            color: var(--primary-pink);
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--text-primary);
            font-size: 1.2rem;
            transition: all var(--transition-medium);
            cursor: none;
        }

        .social-icon:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateY(-3px);
        }

        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* ===========================================
            STYLES POUR LES PAGES DÉDIÉES AUX PROJETS
        =========================================== */
        .project-detail-page {
            padding: 120px 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
            min-height: 100vh;
            background: var(--bg-gradient);
        }
        
        .project-detail-container {
            background: var(--card-bg);
            border-radius: var(--border-radius-lg);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        
        .project-detail-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-pink), var(--primary-blue));
        }
        
        .project-detail-header {
            margin-bottom: 3rem;
            position: relative;
        }
        
        .project-detail-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .project-detail-back:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateX(-5px);
        }
        
        .project-detail-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-pink), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .project-detail-subtitle {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-secondary);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .project-detail-image {
            width: 100%;
            height: 400px;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-md);
        }
        
        .project-detail-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-detail-image:hover img {
            transform: scale(1.05);
        }
        
        .project-detail-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }
        
        .project-description-section {
            margin-bottom: 3rem;
        }
        
        .project-description-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .project-description-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }
        
        .project-info-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-md);
            padding: 2rem;
            border-left: 4px solid var(--primary-pink);
        }
        
        .project-info-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .project-info-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .project-info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .project-info-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .project-info-label i {
            color: var(--primary-pink);
        }
        
        .project-info-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .project-tags-section {
            margin-top: 3rem;
        }
        
        .project-tags-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }
        
        .project-tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .project-detail-tag {
            padding: 8px 16px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .project-detail-tag.tech {
            background: rgba(65, 105, 225, 0.1);
            color: var(--primary-blue);
        }
        
        .project-detail-tag.design {
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
        }
        
        .project-detail-tag.video {
            background: rgba(153, 153, 255, 0.1);
            color: #9999FF;
        }
        
        .project-gallery {
            margin-top: 3rem;
        }
        
        .project-gallery-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }
        
        .project-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .project-gallery-item {
            border-radius: var(--border-radius-md);
            overflow: hidden;
            height: 200px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
        }
        
        .project-gallery-item:hover {
            transform: translateY(-5px);
        }
        
        .project-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .project-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .project-nav-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(255, 107, 139, 0.1);
            color: var(--primary-pink);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .project-nav-link:hover {
            background: var(--primary-pink);
            color: white;
            transform: translateY(-3px);
        }
        
        .project-nav-link.prev:hover {
            transform: translateX(-5px) translateY(-3px);
        }
        
        .project-nav-link.next:hover {
            transform: translateX(5px) translateY(-3px);
        }

        /* ===========================================
            RESPONSIVE DESIGN
        =========================================== */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .about-image-frame {
                width: 320px;
                height: 320px;
                margin: 0 auto;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--card-bg);
                flex-direction: column;
                padding: 1rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all var(--transition-medium);
                z-index: 9999;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .contact-section-special {
                padding: 2rem 1.5rem;
            }
            
            .contact-title-special {
                font-size: 2rem;
            }
            
            .contact-grid-special {
                grid-template-columns: 1fr;
            }
            
            body {
                cursor: auto !important;
            }
            
            .sakura-cursor {
                display: none !important;
            }
            
            .sakura-float {
                width: 40px;
                height: 40px;
                font-size: 32px;
            }
            
            .sakura-pop {
                width: 60px;
                height: 60px;
                font-size: 48px;
            }
            
            .sakura-tree-nav {
                display: none;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .skill-card {
                height: 380px;
            }
            
            .skills-title {
                font-size: 2.5rem;
            }
            
            .skills-filters {
                padding: 20px;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .progress-container {
                width: 120px;
                height: 120px;
            }
            
            .progress-value {
                font-size: 2rem;
            }
            
            .sakura-icon {
                font-size: 3.5rem;
            }
            
            .loading-text {
                font-size: 2.5rem;
                letter-spacing: 6px;
            }
            
            .loading-url {
                font-size: 1.2rem;
                letter-spacing: 3px;
            }
            
            .sakura-container {
                gap: 25px;
            }
            
            .character-img {
                width: 140px;
            }
            
            .character-wave {
                font-size: 2.5rem;
                top: -30px;
                right: -20px;
            }
            
            .skill-icon img {
                width: 40px;
                height: 40px;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .project-card {
                height: 420px;
            }
            
            .projects-title {
                font-size: 2.5rem;
            }
            
            .projects-filters {
                padding: 20px;
            }
            
            .project-filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .project-image {
                height: 180px;
            }
            
            .project-name {
                font-size: 1.6rem;
            }
            
            .project-modal-content {
                margin: 20px;
                max-height: 80vh;
            }
            
            .project-modal-header {
                padding: 20px 25px 15px;
            }
            
            .project-modal-body {
                padding: 20px 25px;
            }
            
            .project-modal-title {
                font-size: 2rem;
            }
            
            .project-modal-image {
                height: 200px;
            }
            
            .project-modal-details {
                grid-template-columns: 1fr;
            }
            
            /* Responsive pour les pages de projet */
            .project-detail-page {
                padding: 100px 15px 40px;
            }
            
            .project-detail-container {
                padding: 2rem 1.5rem;
            }
            
            .project-detail-title {
                font-size: 2.2rem;
            }
            
            .project-detail-subtitle {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .project-detail-image {
                height: 250px;
            }
            
            .project-detail-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .project-gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .project-navigation {
                flex-direction: column;
                gap: 1rem;
            }
            
            /* Responsive pour la nouvelle section parcours */
            .journey-title {
                font-size: 2.5rem;
            }
            
            .journey-steps {
                padding-left: 25px;
            }
            
            .journey-step::before {
                left: -31px;
            }
            
            .journey-step {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .step-image {
                width: 100%;
                flex: 0 0 auto;
                height: 180px;
            }
            
            .step-title {
                font-size: 1.5rem;
            }
            
            .journey-quote {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            body {
                padding-top: 65px;
            }
            
            .about-image-frame {
                width: 280px;
                height: 280px;
            }
            
            .portfolio-section {
                padding: 3rem 1rem 2rem;
                min-height: calc(100vh - 65px);
            }
            
            .skills-title {
                font-size: 2rem;
            }
            
            .skill-card {
                height: 350px;
            }
            
            .skill-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .skill-name {
                font-size: 1.5rem;
            }
            
            .character-img {
                width: 120px;
            }
            
            .character-wave {
                font-size: 2rem;
                top: -25px;
                right: -15px;
            }
            
            .skill-icon img {
                width: 35px;
                height: 35px;
            }
            
            .projects-title {
                font-size: 2rem;
            }
            
            .project-card {
                height: 400px;
            }
            
            .project-image {
                height: 160px;
            }
            
            .project-name {
                font-size: 1.4rem;
            }
            
            .project-content {
                padding: 20px;
            }
            
            .project-modal-content {
                margin: 10px;
                max-height: 85vh;
            }
            
            .project-modal-title {
                font-size: 1.8rem;
            }
            
            .project-modal-subtitle {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .project-modal-image {
                height: 150px;
            }
            
            .project-modal-description {
                font-size: 1rem;
            }
            
            /* Responsive pour les pages de projet sur très petits écrans */
            .project-detail-page {
                padding: 90px 10px 30px;
            }
            
            .project-detail-container {
                padding: 1.5rem 1rem;
            }
            
            .project-detail-title {
                font-size: 1.8rem;
            }
            
            .project-detail-image {
                height: 200px;
            }
            
            .project-description-title {
                font-size: 1.6rem;
            }
            
            .project-description-text {
                font-size: 1rem;
            }
            
            /* Responsive pour la nouvelle section parcours */
            .journey-step {
                padding: 1.5rem;
            }
            
            .step-title {
                font-size: 1.3rem;
            }
            
            .step-description {
                font-size: 0.95rem;
            }
        }