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

        body {
            font-family: 'Georgia', serif;
            color: #fff;
            overflow-x: hidden;
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
            min-height: 100vh;
        }

        /* Arrière-plan avec overlay */
        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 11, 46, 0.85) 0%, rgba(45, 27, 78, 0.75) 50%, rgba(26, 11, 46, 0.85) 100%);
            z-index: -1;
        }

        /* Motifs orientaux décoratifs */
        .pattern-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.1) 0%, transparent 50%);
            z-index: -1;
            pointer-events: none;
        }

        /* Bannière défilante */
        .banner-carousel {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid rgba(138, 43, 226, 0.5);
        }

        .banner-slides {
            display: flex;
            width: 300%;
            height: 100%;
            animation: slide 20s infinite;
        }

        .banner-slide {
            width: 33.333%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4B0082 0%, #8B008B 100%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .banner-placeholder {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.6);
            z-index: 1;
            text-align: center;
            padding: 20px;
        }

        @keyframes slide {
            0%, 30% { transform: translateX(0); }
            33%, 63% { transform: translateX(-33.333%); }
            66%, 96% { transform: translateX(-66.666%); }
            100% { transform: translateX(0); }
        }
        
        /* Photos de la bannière */
.banner-slide:nth-child(1) {
    background-image: url('img/bg1.png');
}

.banner-slide:nth-child(2) {
    background-image: url('img/bg2.png');
}

.banner-slide:nth-child(3) {
    background-image: url('img/bg3.png');
}

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Header avec logo */
        .header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .logo {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(135deg, #9d4edd 0%, #5a189a 50%, #3c096c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
            margin-bottom: 10px;
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.8)); }
        }

        .tagline {
            font-size: 1.2rem;
            color: #c77dff;
            font-style: italic;
        }

        /* Sections avec effet glassmorphism */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(138, 43, 226, 0.3);
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #c77dff;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #9d4edd, transparent);
        }

        /* Section Bio */
        .bio-text {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Réseaux sociaux */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .social-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 50px;
            text-decoration: none;
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-btn:hover::before {
            left: 100%;
        }

        .social-btn:hover {
            transform: translateY(-3px) scale(1.05);
            border-color: #9d4edd;
            box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
        }

        .social-btn.youtube {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.1));
        }

        .social-btn.instagram {
            background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.1));
        }

        .social-btn.snapchat {
            background: linear-gradient(135deg, rgba(255, 252, 0, 0.2), rgba(255, 252, 0, 0.1));
        }

        .social-icon {
            font-size: 1.5rem;
        }

        /* Section Musique */
        .music-info {
            text-align: center;
            padding: 30px;
        }

        .music-info p {
            font-size: 1.15rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 15px;
        }

        .music-highlight {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(90, 24, 154, 0.2));
            border-radius: 20px;
            margin-top: 20px;
            border: 1px solid rgba(157, 78, 221, 0.3);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 40px 20px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        /* Éléments décoratifs orientaux */
        .ornament {
            width: 60px;
            height: 60px;
            margin: 20px auto;
            border: 2px solid #9d4edd;
            border-radius: 50%;
            position: relative;
            animation: rotate 10s linear infinite;
        }

        .ornament::before,
        .ornament::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid #c77dff;
            border-radius: 50%;
        }

        .ornament::before {
            width: 40px;
            height: 40px;
        }

        .ornament::after {
            width: 20px;
            height: 20px;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-carousel {
                height: 250px;
            }

            .logo {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .glass-card {
                padding: 25px;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .social-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .bio-text,
            .music-info p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .banner-carousel {
                height: 200px;
            }

            .logo {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1rem;
            }
        }
