/*
Theme Name: AI Theme - PROAITOOLS
Theme URI: https://yourdomain.com/ai-theme
Description: Custom generated premium theme for PROAITOOLS powered by Advanced AI. Completely customizable in Elementor and Gutenberg.
Version: 1.1.0
Author: AI Theme Builder
Author URI: https://yourdomain.com
License: GNU General Public License v2 or later
Text Domain: ai-generated-theme
*/

:root {
    --primary-color: #00FFFF;
    --secondary-color: #FF00FF;
    --accent-color: #FFFF00;
    --bg-dark: #0A0A0F;
    --bg-light: #1A1A2A;
    --text-dark: #FFFFFF;
    --text-light: #E0E0E0;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
