.elementor-732 .elementor-element.elementor-element-0182879{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-21876aa */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

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

        .header {
            text-align: center;
            margin-bottom: 40px;
            color: white;
        }

        .header h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .tool-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
        }

        .tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .tool-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            font-weight: bold;
        }

        .tool-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .tool-description {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .tool-url {
            font-size: 0.9rem;
            color: #888;
            font-family: monospace;
            background: #f5f5f5;
            padding: 5px 8px;
            border-radius: 5px;
            word-break: break-all;
        }

        /* Specific colors for each tool */
        .chatgpt { background: linear-gradient(135deg, #10a37f, #1a7f64); }
        .claude { background: linear-gradient(135deg, #ff6b35, #f7931e); }
        .gemini { background: linear-gradient(135deg, #4285f4, #34a853); }
        .leonardo { background: linear-gradient(135deg, #ff6b6b, #ee5a24); }
        .elevenlabs { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
        .manus { background: linear-gradient(135deg, #06b6d4, #0891b2); }
        .mistral { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .deepseek { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .llm-notebook { background: linear-gradient(135deg, #10b981, #059669); }
        .google-ai { background: linear-gradient(135deg, #ea4335, #fbbc04); }

        .footer {
            text-align: center;
            color: white;
            opacity: 0.8;
            margin-top: 40px;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .tools-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tool-card {
                padding: 20px;
            }
        }
    </style>/* End custom CSS */