.elementor-5509 .elementor-element.elementor-element-4676f0f{--display:flex;}/* Start custom CSS *//* AI Tools Article - Modern Geometric Style CSS */
:root {
    --bg-primary: #fafbfc;
    --bg-secondary: #ffffff;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --accent-primary: #667eea;
    --accent-secondary: #f093fb;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.04);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --border-radius: 20px;
    --border-radius-sm: 12px;
}

/* Container and Layout */
.article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 16px;
}

/* Floating Background Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    right: 5%;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 15%;
    left: 0%;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-1);
    top: 60%;
    right: 20%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-15px) rotate(240deg); }
}

/* Hero Image Section */
.hero-section {
    margin-bottom: var(--spacing-xl);
    text-align: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);
}

/* Section Styling */
.section {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

/* Typography */
.article-container h2 {
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.article-container h3 {
    color: var(--text-primary);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.article-container h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.article-container p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Tool Cards */
.tools-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.tool-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.04), transparent);
    transition: left 0.5s ease;
}

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.1);
    border-color: var(--accent-primary);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tool-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    color: white;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.tool-title {
    flex: 1;
    min-width: 0;
}

.tool-title h3 {
    margin-bottom: var(--spacing-xs);
}

/* Links */
.url-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-primary));
    background-size: 0% 2px;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.url-link:hover {
    background-size: 100% 2px;
    color: #764ba2;
}

/* Screenshot placeholders */
.screenshot-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screenshot-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Category tags */
.category-tag {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lists */
.article-container ul, 
.article-container ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

.article-container li {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    margin-top: var(--spacing-xl);
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px var(--shadow-color);
}

.faq-question {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h4 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.faq-answer {
    padding: var(--spacing-md);
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-container {
        padding: var(--spacing-md);
    }

    .hero-section {
        margin-bottom: var(--spacing-lg);
    }

    .hero-image {
        max-height: 300px;
    }

    .section {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) 0;
    }

    .tool-card {
        padding: var(--spacing-md);
    }

    .tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .tool-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .screenshot-placeholder {
        padding: var(--spacing-md);
        min-height: 100px;
    }

    .shape-1, .shape-2, .shape-3 {
        opacity: 0.03;
    }
}

@media (max-width: 480px) {
    .article-container {
        padding: var(--spacing-sm);
    }

    .hero-section {
        margin-bottom: var(--spacing-md);
    }

    .hero-image {
        max-height: 250px;
    }

    .section {
        padding: var(--spacing-md);
    }

    .tool-card {
        padding: var(--spacing-sm);
    }

    .article-container h2 {
        font-size: 1.8rem;
    }

    .article-container h3 {
        font-size: 1.2rem;
    }
}

/* Print styles */
@media print {
    .floating-shapes {
        display: none;
    }
    
    .tool-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .shape-1, .shape-2, .shape-3 {
        animation: none;
    }
    
    .tool-card::before {
        transition: none;
    }
    
    .tool-card:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
.url-link:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: 4px;
}/* End custom CSS */