        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .connexion {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
            display:flex;
            
        }

        /* Animated background elements */
        .bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        /* Bulles avec différentes tailles et opacités */
        .bubble-1 { 
            width: 120px; 
            height: 120px; 
            top: 15%; 
            left: 8%; 
            background: rgba(255, 255, 255, 0.08);
            animation-delay: 0s; 
        }
        .bubble-2 { 
            width: 80px; 
            height: 80px; 
            top: 25%; 
            right: 12%; 
            background: rgba(255, 255, 255, 0.12);
            animation-delay: 2s; 
        }
        .bubble-3 { 
            width: 60px; 
            height: 60px; 
            bottom: 30%; 
            left: 15%; 
            background: rgba(255, 255, 255, 0.06);
            animation-delay: 4s; 
        }
        .bubble-4 { 
            width: 100px; 
            height: 100px; 
            bottom: 20%; 
            right: 20%; 
            background: rgba(255, 255, 255, 0.10);
            animation-delay: 1s; 
        }
        .bubble-5 { 
            width: 40px; 
            height: 40px; 
            top: 60%; 
            left: 5%; 
            background: rgba(255, 255, 255, 0.15);
            animation-delay: 3s; 
        }
        .bubble-6 { 
            width: 90px; 
            height: 90px; 
            top: 70%; 
            right: 8%; 
            background: rgba(255, 255, 255, 0.07);
            animation-delay: 5s; 
        }

        /* Effet de brillance sur les bulles */
        .floating-shape::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 20%;
            width: 30%;
            height: 30%;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            filter: blur(8px);
        }

        /* Logo WebE stylisé */
        .brand-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 180px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            letter-spacing: -8px;
            z-index: 0;
            user-select: none;
            pointer-events: none;
            font-family: 'Inter', sans-serif;
        }

        /* Particules flottantes */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: particle-float 12s linear infinite;
        }

        .particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
        .particle-2 { top: 30%; left: 70%; animation-delay: 3s; }
        .particle-3 { top: 50%; left: 10%; animation-delay: 6s; }
        .particle-4 { top: 70%; left: 80%; animation-delay: 9s; }
        .particle-5 { top: 80%; left: 30%; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); 
                opacity: 0.6;
            }
            25% { 
                transform: translateY(-25px) translateX(15px) rotate(90deg) scale(1.1); 
                opacity: 0.8;
            }
            50% { 
                transform: translateY(-15px) translateX(-10px) rotate(180deg) scale(0.9); 
                opacity: 1;
            }
            75% { 
                transform: translateY(-30px) translateX(20px) rotate(270deg) scale(1.05); 
                opacity: 0.7;
            }
        }

        @keyframes particle-float {
            0% { 
                transform: translateY(0px) scale(0);
                opacity: 0;
            }
            10% { 
                opacity: 1;
                transform: scale(1);
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(-100vh) scale(0);
                opacity: 0;
            }
        }

        .signup-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 40px;
            max-width: 420px;
            width: 100%;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
            animation: slideUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes slideUp {
            from { 
                opacity: 0; 
                transform: translateY(40px) scale(0.95); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        .brand-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .logo {
           
            background-image: url('../image/logo/boitebreak_final_fondpale.png');
            width: 150px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
            animation: pulse 2s infinite;
            
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo::before {
            
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .brand-title {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #000640, #2aafdc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .brand-subtitle {
            color: #6b7280;
            font-size: 16px;
            font-weight: 400;
        }

        .form-section {
            margin-bottom: 32px;
        }

        .input-group {
            position: relative;
            margin-bottom: 24px;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(102, 126, 234, 0.1);
            border-radius: 16px;
            font-size: 16px;
            font-weight: 500;
            background: rgba(248, 250, 252, 0.8);
            transition: all 0.3s ease;
            outline: none;
            color: #1f2937;
        }

        .form-input:focus {
            border-color: #000640;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
        }

        .form-input::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        /* Validation visuelle */
        .form-input.valid {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.05);
        }

        .form-input.invalid {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }

        .signup-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #000640, #2aafdc);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
        }

        .signup-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;
        }

        .signup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
        }

        .signup-btn:hover::before {
            left: 100%;
        }

        .signup-btn:active {
            transform: translateY(0);
        }

        .message {
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            margin-top: 16px;
            animation: fadeIn 0.5s ease-in-out;
        }

        .message.success {
            background: rgba(16, 185, 129, 0.1);
            color: #059669;
            border-left: 4px solid #10b981;
        }

        .message.error {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
            border-left: 4px solid #ef4444;
            animation: shake 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .login-link {
            text-align: center;
            margin-top: 24px;
        }

        .login-link a {
            color: #000640;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .login-link a:hover {
            color: #2aafdc;
            text-decoration: underline;
        }

        .footer {
            text-align: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(107, 114, 128, 0.2);
            color: #9ca3af;
            font-size: 12px;
        }

        /* Loading state */
        .loading {
            pointer-events: none;
            position: relative;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading span {
            opacity: 0;
        }

        /* Password strength indicator */
        .password-strength {
            margin-top: 8px;
            height: 4px;
            background: rgba(107, 114, 128, 0.2);
            border-radius: 2px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .password-strength-bar {
            height: 100%;
            width: 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .strength-weak { background: #ef4444; width: 33%; }
        .strength-medium { background: #f59e0b; width: 66%; }
        .strength-strong { background: #10b981; width: 100%; }

        @media (max-width: 480px) {
            .signup-container {
                padding: 32px 24px;
                margin: 16px;
                border-radius: 24px;
            }

            .brand-title {
                font-size: 24px;
            }

            .form-input {
                padding: 14px 16px;
                font-size: 16px;
            }

            .signup-btn {
                padding: 14px;
            }
        }
        
        .shape-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape-2 { width: 60px; height: 60px; top: 60%; left: 80%; animation-delay: 2s; }
        .shape-3 { width: 40px; height: 40px; top: 80%; left: 20%; animation-delay: 4s; }


        .login-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 40px;
            max-width: 420px;
            width: 100%;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
            animation: slideUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        
        .error-message {
            background: rgba(239, 68, 68, 0.1);
            color: #dc2626;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            margin-top: 16px;
            border-left: 4px solid #dc2626;
            animation: shake 0.5s ease-in-out;
        }

        
        .reg-btn {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #000640, #2aafdc);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 12px;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
            
        }

        .reg-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;
        }

        .reg-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
        }

        .reg-btn:hover::before {
            left: 100%;
        }

        .reg-btn:active {
            transform: translateY(0);
        }
        
                .forgot-password {
            text-align: center;
            margin-top: 24px;
        }


        .forgot-password a {
            color: #000640;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .forgot-password a:hover {
            color: #2aafdc;
            text-decoration: underline;
        }
        
        
        
        @media (max-width: 480px) {
            .login-container {
                padding: 32px 24px;
                margin: 16px;
                border-radius: 24px;
            }

            .brand-title {
                font-size: 24px;
            }

            .form-input {
                padding: 14px 16px;
                font-size: 16px;
            }

            .login-btn {
                padding: 14px;
            }
            
            .resend-btn{
                padding: 14px;
            }
        }
        
        
        .login-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #000640, #2aafdc);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
        }

        .login-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;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
        }

        .login-btn:hover::before {
            left: 100%;
        }

        .login-btn:active {
            transform: translateY(0);
        }
        
        .resend-btn {
            width: 100%;
            padding: 10px;
            background: linear-gradient(135deg, #000640, #2aafdc);
            color: white;
            border: none;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
        }

        .resend-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;
        }

        .resend-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
        }

        .resend-btn:hover::before {
            left: 100%;
        }

        .resend-btn:active {
            transform: translateY(0);
        }
        
        
        .status-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 40px;
            animation: bounceIn 0.8s ease-out 0.3s both;
        }

        .status-icon.success {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
        }

        .status-icon.error {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            box-shadow: 0 8px 32px rgba(239, 68, 68, 0.4);
        }

        .status-icon.expired {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
        }

        @keyframes bounceIn {
            0% { 
                opacity: 0; 
                transform: scale(0.3); 
            }
            50% { 
                opacity: 1; 
                transform: scale(1.1); 
            }
            70% { 
                transform: scale(0.9); 
            }
            100% { 
                transform: scale(1); 
            }
        }

        .brand-section {
            margin-bottom: 32px;
        }

        .brand-title {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #000640, #2aafdc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .status-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .status-title.success { color: #059669; }
        .status-title.error { color: #dc2626; }
        .status-title.expired { color: #d97706; }

        .status-message {
            font-size: 16px;
            line-height: 1.6;
            color: #6b7280;
            margin-bottom: 32px;
        }

        .action-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .btn {
            padding: 16px 24px;
            border: none;
            border-radius: 16px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, #000640, #2aafdc);
            color: white;
            box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: rgba(102, 126, 234, 0.08);
            border: 2px solid rgba(102, 126, 234, 0.2);
            color: #000640;
        }

        .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;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary:hover {
            box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(102, 126, 234, 0.12);
            border-color: rgba(102, 126, 234, 0.3);
            color: #5a67d8;
        }

        .btn:hover::before {
            left: 100%;
        }

        .footer {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(107, 114, 128, 0.2);
            color: #9ca3af;
            font-size: 12px;
        }

        /* Auto redirect countdown */
        .countdown {
            font-size: 14px;
            color: #6b7280;
            margin-top: 16px;
            font-weight: 500;
        }

        .countdown .time {
            color: #000640;
            font-weight: 700;
        }

        @media (max-width: 480px) {
            .verify-container {
                padding: 32px 24px;
                margin: 16px;
                border-radius: 24px;
            }

            .status-icon {
                width: 64px;
                height: 64px;
                font-size: 32px;
            }

            .brand-title {
                font-size: 24px;
            }

            .status-title {
                font-size: 20px;
            }

            .action-buttons {
                flex-direction: column;
            }
        }
        
        .verify-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 28px;
            padding: 40px;
            max-width: 420px;
            width: 100%;
            box-shadow: 
                0 32px 64px rgba(0, 0, 0, 0.12),
                0 8px 16px rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
            animation: slideUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        
        .auth-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: #f4f4f4;
        }
        
        .auth-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 350px;
        }
        
        .auth-title {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .auth-subtitle {
            font-size: 14px;
            margin-bottom: 20px;
            color: #666;
        }
        
        .auth-input {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 14px;
        }
        
        .auth-button {
            width: 100%;
            padding: 10px;
            background: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s;
        }
        
        .auth-button:hover {
            background: #0056b3;
        }
        
        .auth-message {
            margin-top: 10px;
            color: green;
            font-size: 14px;
        }
        
        .dashboard-body {
            display: flex;
            flex-direction: column;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
            position: relative;
            overflow: auto;
}

    
    .bubble { position: absolute; border-radius: 50%; animation: float 8s ease-in-out infinite; }
    .bubble-1 { width: 120px; height: 120px; top: 15%; left: 8%; background: rgba(255,255,255,0.08); animation-delay: 0s; }
    .bubble-2 { width: 80px; height: 80px; top: 25%; right: 12%; background: rgba(255,255,255,0.12); animation-delay: 2s; }
    .bubble-3 { width: 60px; height: 60px; bottom: 30%; left: 15%; background: rgba(255,255,255,0.06); animation-delay: 4s; }
    .bubble-4 { width: 100px; height: 100px; bottom: 20%; right: 20%; background: rgba(255,255,255,0.10); animation-delay: 1s; }
    .bubble-5 { width: 40px; height: 40px; top: 60%; left: 5%; background: rgba(255,255,255,0.15); animation-delay: 3s; }
    .bubble-6 { width: 90px; height: 90px; top: 70%; right: 8%; background: rgba(255,255,255,0.07); animation-delay: 5s; }
    .bubble::before {
        content: '';
        position: absolute;
        top: 20%; left: 20%;
        width: 30%; height: 30%;
        background: rgba(255,255,255,0.3);
        border-radius: 50%; filter: blur(8px);
    }
    @keyframes float {
        0%,100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
        25% { transform: translateY(-25px) translateX(15px) scale(1.1); opacity: 0.8; }
        50% { transform: translateY(-15px) translateX(-10px) scale(0.9); opacity: 1; }
        75% { transform: translateY(-30px) translateX(20px) scale(1.05); opacity: 0.7; }
    }
    .particle { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; animation: particle-float 12s linear infinite; }
    .particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
    .particle-2 { top: 30%; left: 70%; animation-delay: 3s; }
    .particle-3 { top: 50%; left: 10%; animation-delay: 6s; }
    .particle-4 { top: 70%; left: 80%; animation-delay: 9s; }
    .particle-5 { top: 80%; left: 30%; animation-delay: 2s; }
    @keyframes particle-float {
        0% { transform: translateY(0) scale(0); opacity: 0; }
        10% { opacity: 1; transform: scale(1); }
        90% { opacity: 1; }
        100% { transform: translateY(-100vh) scale(0); opacity: 0; }
    }
    .brand-logo {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        font-size: 180px;
        font-weight: 900;
        color: rgba(255,255,255,0.03);
        letter-spacing: -8px;
        z-index: 0;
        user-select: none;
        pointer-events: none;
        font-family: 'Inter', sans-serif;
    }
    
    /* === WebE Verify Page Styles === */
    .verify-body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }
    
    .verify-bg-animation { position: absolute; width: 100%; height: 100%; z-index: 0; }
    .verify-bubble { position: absolute; border-radius: 50%; animation: float 8s ease-in-out infinite; }
    .verify-bubble-1 { width: 120px; height: 120px; top: 15%; left: 8%; background: rgba(255,255,255,0.08); animation-delay: 0s; }
    .verify-bubble-2 { width: 80px; height: 80px; top: 25%; right: 12%; background: rgba(255,255,255,0.12); animation-delay: 2s; }
    .verify-bubble-3 { width: 60px; height: 60px; bottom: 30%; left: 15%; background: rgba(255,255,255,0.06); animation-delay: 4s; }
    .verify-bubble-4 { width: 100px; height: 100px; bottom: 20%; right: 20%; background: rgba(255,255,255,0.10); animation-delay: 1s; }
    .verify-bubble-5 { width: 40px; height: 40px; top: 60%; left: 5%; background: rgba(255,255,255,0.15); animation-delay: 3s; }
    .verify-bubble-6 { width: 90px; height: 90px; top: 70%; right: 8%; background: rgba(255,255,255,0.07); animation-delay: 5s; }
    .verify-bubble::before {
        content: '';
        position: absolute;
        top: 20%; left: 20%;
        width: 30%; height: 30%;
        background: rgba(255,255,255,0.3);
        border-radius: 50%; filter: blur(8px);
    }
    @keyframes float {
        0%,100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
        25% { transform: translateY(-25px) translateX(15px) scale(1.1); opacity: 0.8; }
        50% { transform: translateY(-15px) translateX(-10px) scale(0.9); opacity: 1; }
        75% { transform: translateY(-30px) translateX(20px) scale(1.05); opacity: 0.7; }
    }
    .verify-particle { position: absolute; width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; animation: particle-float 12s linear infinite; }
    .verify-particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
    .verify-particle-2 { top: 30%; left: 70%; animation-delay: 3s; }
    .verify-particle-3 { top: 50%; left: 10%; animation-delay: 6s; }
    .verify-particle-4 { top: 70%; left: 80%; animation-delay: 9s; }
    .verify-particle-5 { top: 80%; left: 30%; animation-delay: 2s; }
    @keyframes particle-float {
        0% { transform: translateY(0) scale(0); opacity: 0; }
        10% { opacity: 1; transform: scale(1); }
        90% { opacity: 1; }
        100% { transform: translateY(-100vh) scale(0); opacity: 0; }
    }
    .verify-brand-logo {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        font-size: 180px;
        font-weight: 900;
        color: rgba(255,255,255,0.03);
        letter-spacing: -8px;
        z-index: 0;
        user-select: none;
        pointer-events: none;
        font-family: 'Inter', sans-serif;
    }
    
    .verify-container {
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        border-radius: 28px;
        padding: 40px;
        max-width: 420px;
        width: 100%;
        box-shadow: 0 32px 64px rgba(0,0,0,0.12), 0 8px 16px rgba(102,126,234,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        position: relative;
        z-index: 1;
        animation: verify-slideUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        text-align: center;
    }
    
    @keyframes verify-slideUp {
        from { opacity: 0; transform: translateY(40px) scale(0.95); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }
    
    .verify-brand-section { margin-bottom: 32px; }
    .verify-brand-title {
        font-size: 28px;
        font-weight: 700;
        background: linear-gradient(135deg, #000640, #2aafdc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }
    
    .verify-status-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 40px;
        animation: verify-bounceIn 0.8s ease-out 0.3s both;
    }
    .verify-status-icon.success {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        box-shadow: 0 8px 32px rgba(16,185,129,0.4);
    }
    .verify-status-icon.error {
        background: linear-gradient(135deg, #ef4444, #dc2626);
        color: white;
        box-shadow: 0 8px 32px rgba(239,68,68,0.4);
    }
    .verify-status-icon.expired {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        box-shadow: 0 8px 32px rgba(245,158,11,0.4);
    }
    @keyframes verify-bounceIn {
        0% { opacity: 0; transform: scale(0.3); }
        50% { opacity: 1; transform: scale(1.1); }
        70% { transform: scale(0.9); }
        100% { transform: scale(1); }
    }
    
    .verify-status-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #1f2937;
    }
    .verify-status-title.success { color: #059669; }
    .verify-status-title.error { color: #dc2626; }
    .verify-status-title.expired { color: #d97706; }
    
    .verify-status-message {
        font-size: 16px;
        line-height: 1.6;
        color: #6b7280;
        margin-bottom: 32px;
    }
    
    .verify-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    .verify-btn {
        padding: 16px 24px;
        border: none;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .verify-btn-primary {
        background: linear-gradient(135deg, #000640, #2aafdc);
        color: white;
        box-shadow: 0 8px 32px rgba(102,126,234,0.4);
    }
    .verify-btn-secondary {
        background: rgba(102,126,234,0.08);
        border: 2px solid rgba(102,126,234,0.2);
        color: #000640;
    }
    .verify-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;
    }
    .verify-btn:hover { transform: translateY(-2px); }
    .verify-btn-primary:hover { box-shadow: 0 12px 40px rgba(102,126,234,0.5); }
    .verify-btn-secondary:hover {
        background: rgba(102,126,234,0.12);
        border-color: rgba(102,126,234,0.3);
        color: #5a67d8;
    }
    .verify-btn:hover::before { left: 100%; }
    
    .verify-countdown {
        font-size: 14px;
        color: #6b7280;
        margin-top: 16px;
        font-weight: 500;
    }
    .verify-countdown .verify-time {
        color: #000640;
        font-weight: 700;
    }
    
    .verify-footer {
        text-align: center;
        padding-top: 24px;
        border-top: 1px solid rgba(107,114,128,0.2);
        color: #9ca3af;
        font-size: 12px;
        margin-top: 24px;
    }
    
    @media (max-width: 480px) {
        .verify-container {
            padding: 32px 24px;
            margin: 16px;
            border-radius: 24px;
        }
        .verify-status-icon {
            width: 64px;
            height: 64px;
            font-size: 32px;
        }
        .verify-brand-title {
            font-size: 24px;
        }
        .verify-status-title {
            font-size: 20px;
        }
        .verify-action-buttons {
            flex-direction: column;
        }
    }
    
    
            /* ===== NAVBAR ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: 70px;
        }
        
        .navbar-left {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .navbar-brand img {
            height: 100px;
            width: auto;
            margin-left: -15%;
        }
        
        /* ===== HAMBURGER BUTTON ===== */
        .hamburger-btn {
            display: flex !important;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            transition: transform 0.3s ease;
        }
        
        .hamburger-btn span {
            width: 100%;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .hamburger-btn:hover span {
            background: #007bff;
        }
        
        .hamburger-btn.active span:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }
        
        .hamburger-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-btn.active span:nth-child(3) {
            transform: translateY(-10.5px) rotate(-45deg);
        }
        
        /* ===== SIDEBAR ===== */
        .sidebar {
            position: fixed;
            top: 70px;
            left: 0;
            width: 280px;
            height: calc(100vh - 70px);
            background: linear-gradient(180deg, #2c3e50 0%, #2aafdc 100%);
            box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
            transition: left 0.3s ease;
            z-index: 999;
            overflow-y: auto;
        }
        
        .sidebar.active {
            left: -280px;
        }
        
        .sidebar-header {
            padding: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .sidebar-header h3 {
            color: #fff;
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .sidebar-nav {
            padding: 1rem 0;
        }
        
        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-item {
            margin: 0.5rem 0;
        }
        
        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .sidebar-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-left-color: #3498db;
        }
        
        .sidebar-item.active .sidebar-link {
            background: rgba(52, 152, 219, 0.2);
            color: #fff;
            border-left-color: #3498db;
        }
        
        .sidebar-icon {
            font-size: 1.3rem;
            width: 24px;
            text-align: center;
        }
        
        .sidebar-text {
            font-size: 1rem;
            font-weight: 500;
        }
        
        /* ===== SIDEBAR OVERLAY ===== */
        .sidebar-overlay {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* ===== MAIN CONTENT ===== */
        .dashboard-content {

            padding: 40px;
            min-height: calc(100vh - 70px - 60px);
            margin-left: 280px;
            transition: margin-left 0.3s ease;
            margin-top: 3%;
        }
        
        
        
        .dashboard-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            font-weight: 600;
            margin-top: 0;
        }
        
        /* ===== CONTENT SECTIONS ===== */
        .content-section {
            display: none;
            animation: fadeIn 0.3s ease;
        }
        
        .content-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ===== DASHBOARD GRID ===== */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .card-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
            color: #fff;
        }
        
        .card-header h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .card-teams-body {
            padding: 1.5rem;
      
        }
        
        .card-teams-body p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }
        
        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        /* ===== USER INFO ===== */
        .user-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .username {
            color: #2c3e50;
            font-weight: 500;
        }
        
        .logout-btn {
            padding: 0.6rem 1.2rem;
            background: #dc3545;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .logout-btn:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        }
        
        /* ===== FOOTER ===== */
        .dashboard-footer {
            color: #fff;
            text-align: center;
            padding: 1.5rem;
            margin-top: auto;
        }
        
        /* ===== SCROLLBAR ===== */
        .sidebar::-webkit-scrollbar {
            width: 6px;
        }
        
        .sidebar::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.1);
        }
        
        .sidebar::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }
        
        .sidebar::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }
        
        /* ===== RESPONSIVE ===== */
        @media (min-width: 769px) {
            .sidebar {
                left: 0;
            }
            
            .sidebar.active {
                left: -280px;
            }
            
            .sidebar-overlay {
                display: none;
            }
            
            .dashboard-content {
                margin-left: 280px;
            }
            
            body.sidebar-open .dashboard-content {
                margin-left: 0;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }
            
            .navbar-brand img {
                height: 60px;
            }
            
            .sidebar {
                left: -280px;
            }
            
            .sidebar.active {
                left: 0;
            }
            
            .dashboard-content {
                margin-left: 0;
                padding: 1rem;
            }
            
            body.sidebar-open .dashboard-content {
                margin-left: 0;
            }
            
            .dashboard-title {
                font-size: 1.5rem;
            }
            
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
            
            .username {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .navbar {
                padding: 0.8rem;
            }
            
            .navbar-left {
                gap: 1rem;
            }
            
            .navbar-brand img {
                height: 35px;
            }
            
            .logout-btn {
                padding: 0.5rem 0.8rem;
                font-size: 0.9rem;
            }
        }
            
        #section-teams, .card-teams-body, .containerteam {
            position: relative;
            z-index: 1;
        }
        
        
        
        .card-body {
            padding: 1.5rem;
          
        }
        
        .card-body p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }
        
        
        .containerteam{
            display:flex;
        }
        
        .draggable img {
            width: 38%; /* ou toute autre largeur en pixels que vous préférez */
            height: auto;
            padding: 0px 0px;
        }
        
        
        /* ===== TEAMH STYLES ===== */

/* Base Styles */
.teamh-container {
    max-width: 1400px;
    margin: 5% auto;
    padding: 20px;
}

/* ===== CONTROLS SECTION ===== */
.teamh-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.teamh-btn {
    flex: 1;
    min-width: 200px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.teamh-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.teamh-code-box {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teamh-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.teamh-label-note {
    color: #666;
    font-style: italic;
    font-size: 12px;
    font-weight: 400;
}

.teamh-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.teamh-input:focus {
    outline: none;
    border-color: #667eea;
}

/* ===== MODAL STYLES ===== */
.teamh-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* overlay semi-transparent */
    backdrop-filter: blur(5px);
    overflow: auto;
    padding-top: 60px; /* pour descendre un peu le contenu */
}

.teamh-modal-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 16px;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: teamhSlideDown 0.3s ease;
    position: relative;
}


@keyframes teamhSlideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.teamh-modal-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.teamh-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    resize: vertical;
}

.teamh-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.teamh-modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.teamh-modal-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#TeamSelect {
    width: 435px;
    height: 250px;
}

.teamh-modal-btn-primary {
    background: linear-gradient(135deg, #000640 0%, #2aafdc 100%);
    color: white;
}

.teamh-modal-btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.teamh-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== TEAMS GRID ===== */
.teamh-teams-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.teamh-team-column {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teamh-team-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.teamh-team-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.teamh-team-item:last-child {
    margin-bottom: 0;
}

.teamh-team-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.teamh-team-name {
    flex: 1;
}

.teamh-team-input {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 5px;
}

.teamh-team-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .teamh-controls {
                flex-direction: column;
            }
        
            .teamh-btn {
                min-width: 100%;
            }
        
            .teamh-teams-container {
                grid-template-columns: 1fr;
            }
        }
            
               #cliclogo{
        
        	cursor: pointer;
        }   


        .tools-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* toujours 4 colonnes max */
            gap: 20px;
        }
        .tools-content {
            margin-top: 5%;

        }
        
        @media (max-width: 1000px) {
            .tools-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur écrans moyens */
            }
        }
        
        @media (max-width: 600px) {
            .tools-grid {
                grid-template-columns: 1fr; /* 1 colonne sur mobile */
            }
        }
        

        .tool-card {
            background: white;
            border-radius: 16px;
            padding: 20px 60px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            animation: slideUp 0.5s ease;
            min-width:50%;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .tool-remove-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #dc3545;
            color: white;
            border: none;
            border-radius: 8px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            line-height: 1;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .tool-card:hover .tool-remove-btn {
            opacity: 1;
        }

        .tool-remove-btn:hover {
            background: #c82333;
            transform: scale(1.1);
        }

        .tool-link {
            display: block;
            text-decoration: none;
            text-align: center;
        }

        .tool-icon-container {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: transform 0.3s ease;
        }

        .tool-card:hover .tool-icon-container {
            transform: scale(1.05);
        }

        .tool-icon {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .tool-title {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 8px 0;
            transition: color 0.3s ease;
        }

        .tool-card:hover .tool-title {
            color: #2aafdc;
        }

        .tool-url {
            color: #666;
            font-size: 13px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        /* Ajustements pour le modal */
        .teamh-modal {
            padding-top: 100px;
        }

        .teamh-modal-content {
            max-width: 500px;
            margin: auto;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tools-content {
                margin-left: 0;
                padding: 100px 20px 20px;
            }

            .tools-grid {
                grid-template-columns: 1fr;
            }


            .teamh-btn {
                width: 100%;
            }
        }