        :root {
            --bg: #030303;
            --text: #ffffff;
            --brand-pink: #ff0055; 
            --input-bg: rgba(255,255,255,0.05);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
        }

        #webgl-container {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            z-index: -1; pointer-events: none;
        }

        #content-wrapper {
            width: 100%;
            position: relative;
            z-index: 1;
        }

        nav {
            position: fixed; top: 0; width: 100%; padding: 2rem 5%;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 100; mix-blend-mode: exclusion;
        }
        .logo {
            font-family: 'Syne', sans-serif;
            font-weight: 800; font-size: 1.8rem; letter-spacing: -1px;
            text-decoration: none; color: white; text-transform: uppercase;
        }

        section { position: relative; width: 100%; }
        h1, h2, h3 { font-family: 'Syne', sans-serif; text-transform: uppercase; line-height: 1; }

        #hero {
            height: 100vh; 
            display: flex; 
            flex-direction: column; 
            justify-content: center; 
            align-items: center;
            text-align: center; 
            padding: 0 10%;
        }
        .hero-title {
            font-size: clamp(2.5rem, 8vw, 6rem); 
            margin-top: 5vh;
            font-weight: 800; color: white; z-index: 2; margin-bottom: 1.5rem;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5); 
        }
        .hero-subtitle {
            font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 300; max-width: 700px;
            color: #ccc; line-height: 1.6; letter-spacing: 0.5px;
        }

        #manifesto {
            min-height: 80vh; display: flex; align-items: center; justify-content: center;
            background: transparent; 
        }
        .huge-text { 
            font-size: clamp(1.8rem, 3.5vw, 2.8rem); max-width: 1000px; 
            line-height: 1.3; padding: 0 2rem; text-align: center; font-weight: 700;
            text-shadow: 0 5px 20px rgba(0,0,0,0.8);
        }

        /* TECH SHOWCASE - Bandeau marquee noir avec bordures roses */
        .tech-showcase {
            min-height: auto;
            padding: 0;
            background: transparent;
            position: relative;
            overflow: hidden;
            margin: 8vh 0;
        }
        
        .tech-scroll-container {
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 2px solid var(--brand-pink);
            border-bottom: 2px solid var(--brand-pink);
            padding: 2rem 0;
            box-shadow: 0 0 60px rgba(255, 0, 85, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .tech-scroll-container::before,
        .tech-scroll-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 200px;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }
        
        .tech-scroll-container::before {
            left: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, transparent 100%);
        }
        
        .tech-scroll-container::after {
            right: 0;
            background: linear-gradient(-90deg, rgba(0,0,0,0.95) 0%, transparent 100%);
        }
        
        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .tech-track {
            display: flex;
            gap: 3rem;
            animation: marqueeScroll 40s linear infinite;
            width: fit-content;
        }
        
        .tech-track:hover {
            animation-play-state: paused;
        }
        
        .tech-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
            opacity: 0.8;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .tech-card:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .tech-icon {
            width: 36px;
            height: 36px;
            color: rgba(255, 255, 255, 0.7);
            transition: all 0.4s;
            filter: drop-shadow(0 0 8px rgba(255, 0, 85, 0.3));
            flex-shrink: 0;
        }
        
        .tech-icon svg {
            width: 100%;
            height: 100%;
        }
        
        .tech-card:hover .tech-icon {
            color: var(--brand-pink);
            transform: rotate(10deg);
            filter: drop-shadow(0 0 20px var(--brand-pink));
        }
        
        .tech-label {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
            transition: 0.3s;
            white-space: nowrap;
        }
        
        .tech-card:hover .tech-label {
            color: var(--brand-pink);
            text-shadow: 0 0 20px var(--brand-pink);
        }

        #projects-wrapper { width: 100%; height: 100vh; overflow: hidden; }
        .horizontal-section { width: 600%; height: 100%; display: flex; flex-wrap: nowrap; }
        
        .panel {
            width: 100vw; height: 100vh;
            display: flex; justify-content: center; align-items: center;
            border-right: 1px solid rgba(255,255,255,0.02);
            flex-direction: column; text-align: center;
        }
        
        .project-card {
            width: 75vw; max-width: 550px; text-align: left;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            overflow: hidden; position: relative;
            transition: transform 0.4s ease;
            display: flex; flex-direction: column;
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            max-height: 90vh; /* Empêche débordement vertical */
        }
        .project-card:hover { transform: scale(1.02); border-color: var(--brand-pink); }
        .project-img { 
            width: 100%; 
            height: 250px; 
            object-fit: cover; 
            filter: grayscale(100%); 
            transition: 0.5s;
            flex-shrink: 0; /* Empêche compression */
        }
        .project-card:hover .project-img { filter: grayscale(0%); }
        .project-info { 
            padding: 2rem; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column;
            overflow: auto; /* Scroll si contenu trop long */
        }
        .project-cat { color: var(--brand-pink); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.8rem; letter-spacing: 2px;}
        .project-title { 
            font-size: clamp(1.4rem, 3.5vw, 2.2rem); 
            margin-bottom: 0.8rem; 
            color: white; 
            font-weight: 800;
            line-height: 1.2;
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            max-width: 100%;
        }
        .project-desc { 
            font-size: clamp(0.85rem, 2vw, 1rem); 
            color: #aaa; 
            line-height: 1.5; 
            margin-bottom: 2rem; 
        }
        .tech-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; }
        .tag { font-size: 0.75rem; padding: 6px 12px; border: 1px solid #444; border-radius: 30px; color: #fff; text-transform: uppercase; font-weight: 600; background: rgba(255,255,255,0.05); }

        #contact {
            height: 100vh; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            background: transparent;
            text-align: center;
            padding: 0 5%;
        }
        .footer-cta {
            font-size: clamp(3rem, 10vw, 8rem);
            font-family: 'Syne'; font-weight: 800;
            color: transparent; -webkit-text-stroke: 1px white;
            transition: all 0.5s; cursor: pointer; text-decoration: none;
            line-height: 0.9; display: block;
        }
        .footer-cta:hover { color: var(--brand-pink); -webkit-text-stroke: 0px; letter-spacing: -5px; text-shadow: 0 0 50px var(--brand-pink); }

        #contact-modal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            z-index: 9999; display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
            background: rgba(0,0,0,0.4); backdrop-filter: blur(5px);
        }
        #contact-modal.active { opacity: 1; pointer-events: all; }

        .modal-content {
            background: #080808; 
            width: 90%; 
            max-width: 450px;
            padding: 2rem; 
            border-radius: 20px; 
            border: 1px solid var(--brand-pink); 
            position: relative;
            max-height: 90vh; 
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .close-modal { 
            position: absolute; top: 1rem; right: 1rem; 
            color: white; font-size: 1.5rem; cursor: pointer; 
            transition: 0.3s; z-index: 10;
        }
        .close-modal:hover { color: var(--brand-pink); transform: rotate(90deg); }
        
        .form-group { margin-bottom: 1.5rem; text-align: left; }
        .form-label { display: block; margin-bottom: 0.5rem; color: #888; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
        .form-input, .form-select, textarea {
            width: 100%; padding: 1rem; background: var(--input-bg);
            border: 1px solid rgba(255,255,255,0.1); color: white; font-family: 'Space Grotesk';
            border-radius: 8px; font-size: 1rem; transition: 0.3s;
        }
        .form-input:focus, textarea:focus, .form-select:focus { outline: none; border-color: var(--brand-pink); background: rgba(255,0,85,0.05); }
        
        .submit-btn {
            width: 100%; padding: 1.2rem; background: white; color: black;
            font-family: 'Syne'; font-weight: 800; font-size: 1.2rem; text-transform: uppercase;
            border: none; border-radius: 8px; cursor: pointer; margin-top: 1rem; transition: 0.3s;
        }
        .submit-btn:hover { background: var(--brand-pink); color: white; box-shadow: 0 0 30px var(--brand-pink); }

        @media (min-width: 769px) {
            .modal-content { max-width: 800px; padding: 2.5rem; }
            form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
            .form-group { margin-bottom: 0; }
            .form-group.full-width { grid-column: span 2; }
            .submit-btn { grid-column: span 2; margin-top: 0; }
            textarea { height: 100px; }
        }

        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        
        .neon-text {
            color: #fff;
            text-shadow: 
                0 0 5px var(--brand-pink),
                0 0 10px var(--brand-pink),
                0 0 20px var(--brand-pink),
                0 0 40px var(--brand-pink),
                0 0 80px var(--brand-pink);
            font-weight: 800;
            letter-spacing: 2px;
        }
        
        .pink-text { color: var(--brand-pink); }
        
        @media (max-width: 768px) {
            .tech-scroll-container {
                padding: 1.5rem 0;
                box-shadow: 0 0 40px rgba(255, 0, 85, 0.3);
            }
            .tech-scroll-container::before,
            .tech-scroll-container::after {
                width: 100px;
            }
            .tech-card {
                gap: 0.8rem;
            }
            .tech-icon {
                width: 28px;
                height: 28px;
            }
            .tech-label {
                font-size: 1rem;
                letter-spacing: 1.5px;
            }
            .tech-track {
                gap: 2rem;
            }
            .project-card { 
                width: 90vw; 
                max-width: 90vw;
                min-height: auto; /* Pas de hauteur fixe */
            }
            .project-info {
                padding: 1.5rem;
            }
            .project-title {
                font-size: 1.4rem !important; /* Force la taille sur mobile */
                line-height: 1.2;
                max-width: 100%; /* Empêche débordement */
                overflow-wrap: break-word;
                word-break: break-word;
            }
            .project-desc {
                font-size: 0.85rem;
                line-height: 1.4;
            }
            .project-img {
                height: 180px; /* Réduit pour mobile */
            }
            .tech-tags {
                gap: 0.4rem;
            }
            .tag {
                font-size: 0.7rem;
                padding: 5px 10px;
            }
            .hero-title { 
                line-height: 1.1; 
                font-size: clamp(2rem, 10vw, 6rem) !important;
            }
            .hero-subtitle {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            .neon-text {
                font-size: clamp(2rem, 10vw, 4rem) !important;
                line-height: 1.1 !important;
                padding: 0 1rem;
            }
            .modal-content { 
                padding: 1.5rem; 
                width: 95%;
            }
            /* Ajustements cards pour éviter débordement */
            .panel {
                padding: 1rem;
            }
        }


/* BANDEAU PARTENAIRES INLINE */
.partners-banner-inline {
    max-width: 900px;
    padding: 2rem 2rem;
    text-align: center;
}
.partners-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--brand-pink), #6200ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.partners-subtitle {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.partners-grid-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.partner-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
}
.partner-item:hover {
    transform: translateY(-10px);
    border-color: var(--brand-pink);
    box-shadow: 0 20px 60px rgba(255, 0, 85, 0.3);
}
.partner-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.7);
    transition: all 0.4s;
}
.partner-item:hover .partner-logo {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}
.partner-badge {
    background: linear-gradient(135deg, var(--brand-pink), #6200ff);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive partners mobile */
@media (max-width: 768px) {
    .partners-banner-inline {
        padding: 1.5rem 1rem;
    }
    .partners-grid-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .partners-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    .partners-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .partner-item {
        padding: 1rem 0.8rem;
    }
    .partner-logo {
        width: 80px;
        height: 40px;
    }
    .partner-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* EFFETS IMMERSIFS */
.interactive-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--brand-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--brand-pink);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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