/*
Theme Name: ChatAI
Theme URI: https://github.com/alexva1023/ChatAIControl
Author: Antigravity AI
Author URI: https://github.com/alexva1023/ChatAIControl
Description: Tema premium diseñado para ChatAI, transformando WordPress en un portal de Inteligencia Artificial de alto impacto para colaboradores.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chatai
Tags: dark, responsive-layout, custom-colors
*/

/* Reset e inicialización de variables globales basadas en opciones del plugin */
:root {
    --aigw-primary: #4f7fd6;
    --aigw-accent: #2f60c4;
    --aigw-bg-start: #1e1b4b;
    --aigw-bg-end: #030712;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, var(--aigw-bg-start), var(--aigw-bg-end)) !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #f8fafc;
    -webkit-font-smoothing: antialiased;
}

/* Ocultar barra superior de administración */
body.admin-bar {
    margin-top: 0 !important;
}
#wpadminbar {
    opacity: 0.2;
    transition: opacity 0.2s;
}
#wpadminbar:hover {
    opacity: 1;
}
