
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #75C4E7; --dark: #1a1a2e; --white: #ffffff; --gold: #C5A663; }
        body { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; color: inherit; }

        /* ==================== HEADER ==================== */
        .header { 
            position: fixed; 
            top: 0; 
            left: 0; 
            right: 0; 
            z-index: 1000; 
            padding: 15px 0; 
            background: var(--primary); 
            box-shadow: 0 2px 20px rgba(0,0,0,0.1); 
        }
        
        .header-inner { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            max-width: 1400px; 
            margin: 0 auto; 
            padding: 0 40px; 
        }
        
        .logo { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            font-size: 1.8rem; 
            z-index: 1001; 
            flex-shrink: 0;
        }
        .logo .anima { color: var(--white); font-weight: 700; }
        .logo .musica { color: var(--white); font-weight: 600; }

        .nav { 
            display: flex; 
            align-items: center; 
            gap: 35px; 
        }
        
        .nav-link { 
            color: var(--white); 
            font-weight: 500; 
            font-size: 0.95rem; 
            padding: 8px 0; 
            position: relative; 
            white-space: nowrap;
        }
        
        .nav-link::after { 
            content: ''; 
            position: absolute; 
            bottom: 0; 
            left: 0; 
            width: 0; 
            height: 2px; 
            background: var(--white); 
            transition: width 0.3s ease; 
        }
        
        .nav-link:hover::after,
        .nav-link.active::after { 
            width: 100%; 
        }

        /* Cacher le bouton Contact mobile sur desktop */
        .nav-link-mobile {
            display: none;
        }

        .btn-contact-header { 
            background: var(--white); 
            color: var(--primary); 
            padding: 12px 28px; 
            border-radius: 30px; 
            font-weight: 600; 
            font-size: 0.95rem; 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            border: 2px solid var(--white); 
            flex-shrink: 0;
        }
        
        .btn-contact-header:hover { 
            background: transparent; 
            color: var(--white);
            border-color: var(--white); 
        }

        .burger { 
            display: none; 
            flex-direction: column; 
            width: 40px; 
            height: 40px; 
            cursor: pointer; 
            z-index: 1001; 
            background: none; 
            border: none; 
            justify-content: center; 
            align-items: center; 
        }
        
        .burger span { 
            display: block; 
            width: 28px; 
            height: 3px; 
            background: var(--white); 
            border-radius: 3px; 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            margin: 3px 0; 
        }
        
        .burger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

        /* ==================== SECTION HERO ARTISTE ==================== */
        .artiste-hero {
            background: var(--dark);
            padding: 150px 20px 100px;
        }

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

        .artiste-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 60px;
            align-items: start;
        }

        .artiste-photo {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }

        .artiste-photo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .artiste-right {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .artiste-video {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            background: #000;
        }

        .artiste-video video {
            width: 100%;
            height: auto;
            display: block;
        }


        .video-overlay:hover {
            background: rgba(0,0,0,0.4);
        }

        .video-overlay.hidden {
            display: none;
        }


        .play-button:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(117, 196, 231, 0.4);
        }

        .play-button svg {
            width: 26px;
            height: 26px;
            fill: var(--white);
            margin-left: 4px;
        }

        .artiste-content span.label {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .artiste-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 25px;
        }

        .artiste-content h1 em {
            color: var(--primary);
            font-style: normal;
        }

        .artiste-content p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .btn-contact {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            background: var(--primary);
            color: var(--dark);
            border: 2px solid var(--primary);
            margin-top: 15px;
        }

        .btn-contact:hover {
            background: transparent;
            color: var(--primary);
        }

        /* ==================== SECTION MUSIQUE ==================== */
        .musique-section {
            background: var(--white);
            padding: 100px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .section-header h2 em {
            color: var(--primary);
            font-style: normal;
        }

        .singles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .single-card {
            text-align: center;
        }

        .single-cover {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            margin-bottom: 20px;
            aspect-ratio: 1/1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
        }

        .single-cover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.25);
        }

        .single-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .single-cover .play-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .single-cover:hover .play-overlay {
            opacity: 1;
        }

        .play-btn-yt {
            width: 70px;
            height: 70px;
            background: #FF0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .play-btn-yt:hover {
            transform: scale(1.1);
        }

        .play-btn-yt svg {
            width: 28px;
            height: 28px;
            fill: var(--white);
            margin-left: 4px;
        }

        .single-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .single-subtitle {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        /* ==================== SECTION TIMELINE ==================== */
        .timeline-section {
            background: #f8f9fa;
            padding: 100px 20px;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .timeline-header span {
            display: block;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .timeline-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .timeline-header h2 em {
            color: var(--primary);
            font-style: normal;
        }

        .timeline {
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            margin-bottom: 50px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-year {
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }

        .timeline-year.gold {
            background: var(--primary);
        }

        .timeline-content {
            padding-top: 10px;
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .timeline-content p {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: #0d0d1a;
            padding: 60px 20px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.8;
            display: block;
        }

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

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
        }

        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* ==================== RESPONSIVE ==================== */
        /* iPad Pro (1024px) */
        @media (max-width: 1100px) {
            .header-inner {
                padding: 0 20px;
            }
            
            .nav {
                gap: 25px;
            }
            
            .nav-link {
                font-size: 0.9rem;
            }

            .artiste-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .artiste-photo {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* Tablet (900px) */
        @media (max-width: 900px) {
            .nav { 
                position: fixed; 
                top: 0; 
                left: 0; 
                right: 0; 
                bottom: 0; 
                background: var(--primary); 
                flex-direction: column; 
                justify-content: center; 
                align-items: center; 
                gap: 0;
                transform: translateX(100%); 
                transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000; 
            }
            
            .nav.active { transform: translateX(0); }
            
            .nav-link { 
                font-size: 1.5rem; 
                padding: 15px 0; 
                color: var(--white);
            }
            
            .nav-link-mobile {
                display: block;
                margin-top: 30px;
                background: white;
                color: var(--primary);
                padding: 15px 40px;
                border-radius: 30px;
                font-weight: 600;
                transition: all 0.3s ease;
            }
            .nav-link-mobile:hover {
                transform: scale(1.05);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }
            
            .btn-contact-header { display: none; }
            .burger { display: flex; }

            .artiste-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .artiste-video {
                max-width: 300px;
                margin: 0 auto;
            }

            .artiste-content {
                text-align: center;
            }

            .artiste-content h1 {
                font-size: 2.2rem;
            }

            .singles-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                text-align: left;
            }

            .footer-social {
                justify-content: flex-start;
            }

            .timeline-item {
                gap: 20px;
            }

            .timeline-year {
                width: 80px;
                height: 80px;
                font-size: 1.1rem;
            }
        }

        /* Mobile (768px) */
        @media (max-width: 768px) {
            .artiste-hero {
                padding: 120px 20px 60px;
            }

            .artiste-video {
                max-width: 280px;
            }

            .artiste-content h1 {
                font-size: 1.8rem;
            }

            .artiste-content p {
                font-size: 1rem;
            }

            .musique-section,
            .timeline-section {
                padding: 60px 20px;
            }

            .section-header h2,
            .timeline-header h2 {
                font-size: 1.8rem;
            }

            .singles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .single-cover .play-overlay {
                opacity: 1;
                background: rgba(0,0,0,0.3);
            }

            .timeline-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
            }

            .timeline-year {
                width: 70px;
                height: 70px;
                font-size: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }
        }

        /* Small Mobile (480px) */
        @media (max-width: 480px) {
            .artiste-hero {
                padding: 100px 15px 50px;
            }

            .artiste-video {
                max-width: 250px;
            }

            .artiste-content h1 {
                font-size: 1.5rem;
            }

            .section-header h2,
            .timeline-header h2 {
                font-size: 1.5rem;
            }

            .singles-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 280px;
                margin: 0 auto;
            }

            .single-title {
                font-size: 1rem;
            }

            .timeline-content h3 {
                font-size: 1.2rem;
            }

            .timeline-content p {
                font-size: 0.9rem;
            }
        }
    
        .btn-email-cta { display: inline-block; background: var(--gold); color: var(--dark); padding: 12px 30px; border-radius: 30px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 15px rgba(197,166,99,0.3); text-decoration: none; }
        .btn-email-cta:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
        