/*
Theme Name: AI Chatbot WordPress Theme
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: A premium WordPress theme with AI chatbot UI, admin settings, secure provider adapters, and chat session persistence.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: ai-chatbot-theme
*/

:root {
  --ai-brand: #7c3aed;
  --ai-bg: #0b1020;
  --ai-panel: rgba(255,255,255,0.08);
  --ai-border: rgba(255,255,255,0.12);
  --ai-text: #f8fafc;
  --ai-soft: #94a3b8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.ai-chatbot-theme-body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(124,58,237,0.18), transparent 30%),
    linear-gradient(180deg, #09090b 0%, #111827 100%);
  color: var(--ai-text);
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
