@import url("responsive-global.css");
    /* ═══════════════════════════════════════════════════════
           🎨 PARTICULES ANIMÉES
           ═══════════════════════════════════════════════════════ */
        
        #particles-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        body {
            position: relative;
            overflow-x: hidden;
        }
        
        .ghali-container {
            position: relative;
            z-index: 1;
        }
        
        /* ═══════════════════════════════════════════════════════
           ⚡ EFFETS 3D GLASSMORPHISM
           ═══════════════════════════════════════════════════════ */
        
        .ghali-card {
            background: rgba(255, 255, 255, 0.85) !important;
            backdrop-filter: blur(10px) !important;
            border: 1px solid rgba(255, 255, 255, 0.3) !important;
            box-shadow: 
                0 8px 32px 0 rgba(31, 38, 135, 0.15),
                inset 0 0 20px rgba(255, 255, 255, 0.5) !important;
            transform-style: preserve-3d;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .ghali-card:hover {
            transform: translateY(-5px) rotateX(2deg);
            box-shadow: 
                0 15px 50px 0 rgba(31, 38, 135, 0.25),
                inset 0 0 30px rgba(255, 255, 255, 0.7) !important;
        }
        
        .ghali-reponses-grid button {
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transition: all 0.3s ease;
        }
        
        .ghali-reponses-grid button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.4), 
                transparent);
            transition: left 0.5s;
        }
        
        .ghali-reponses-grid button:hover::before {
            left: 100%;
        }
        
        .ghali-reponses-grid button:hover {
            transform: scale(1.05) translateZ(10px);
            box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
        }
        
        .ghali-header {
            background: linear-gradient(135deg, 
                #667eea 0%, 
                #764ba2 25%, 
                #f093fb 50%, 
                #667eea 75%, 
                #764ba2 100%);
            background-size: 300% 300%;
            animation: gradientShift 8s ease infinite;
            position: relative;
            overflow: hidden;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        
        .ghali-progression-remplissage {
            position: relative;
            box-shadow: 0 0 20px rgba(156, 39, 176, 0.6);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .ghali-progression-remplissage::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
            animation: shimmer 1.5s infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        
        /* ═══════════════════════════════════════════════════════
           🤖 AVATAR INTELLIGENT
           ═══════════════════════════════════════════════════════ */
        
        #avatar-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        #avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #9C27B0, #00BCD4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
            animation: pulse 2s infinite;
            position: relative;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        #avatar:hover {
            transform: scale(1.1);
        }
        
        #avatar.talking {
            animation: talk 0.5s infinite;
        }
        
        @keyframes talk {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.1) rotate(-5deg); }
            75% { transform: scale(1.1) rotate(5deg); }
        }
        
        .avatar-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #FFC107;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5em;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.4);
        }
        
        #avatar-speech {
            position: absolute;
            bottom: 120px;
            left: 0;
            background: white;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            max-width: 300px;
            display: none;
            border-right: 4px solid #9C27B0;
        }
        
        #avatar-speech.show {
            display: block;
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        #avatar-speech::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
        }
        
        /* ═══════════════════════════════════════════════════════
           🎥 MODAL VIDÉO
           ═══════════════════════════════════════════════════════ */
        
        #video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        #video-modal.show {
            display: flex;
        }
        
        .video-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            max-width: 800px;
            width: 90%;
            position: relative;
        }
        
        .video-close {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #f44336;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .video-close:hover {
            background: #d32f2f;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .video-btn {
            display: inline-block;
            background: linear-gradient(135deg, #FFC107, #FF9800);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1em;
        }
        
        .video-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
        }
        
        /* ═══════════════════════════════════════════════════════
           🎯 CONFETTIS + NOTIFICATIONS
           ═══════════════════════════════════════════════════════ */
        
        #confetti-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
        }
        
        .toast-notification {
            position: fixed;
            top: 100px;
            right: 30px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transform: translateX(400px);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 10000;
            border-right: 5px solid;
        }
        
        .toast-notification.show {
            transform: translateX(0);
        }
        
        .toast-notification.success {
            border-color: #4CAF50;
        }
        
        .toast-notification.error {
            border-color: #f44336;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(156, 39, 176, 0.1);
            border-top: 5px solid #9C27B0;
            border-radius: 50%;
            animation: spin 1s linear infinite, colorChange 3s ease infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes colorChange {
            0%, 100% { border-top-color: #9C27B0; }
            33% { border-top-color: #00BCD4; }
            66% { border-top-color: #FFC107; }
        }