/*
Theme Name: AutoSports AI
Theme URI: https://khedmtitn.com
Author: AutoSports
Description: A professional sports news theme with AI-powered automatic article generation. Generates 100% original copyright-free content via Claude AI.
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GPL v2 or later
Text Domain: autosports
*/

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #003580;
    --accent:  #e8000d;
    --dark:    #111827;
    --mid:     #374151;
    --light:   #f3f4f6;
    --white:   #ffffff;
    --border:  #e5e7eb;
    --radius:  6px;
    --shadow:  0 2px 8px rgba(0,0,0,.10);
    --font:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--light);
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
