/**
 * Base Styles
 * CSS custom properties, reset, and body defaults
 * Used across all pages except landing (index.php)
 */

:root {
    /* Backgrounds */
    --bg-primary: #0f172a;
    --bg-card: #1e293b;
    --bg-input: #0f172a;
    --bg-hover: #475569;

    /* Borders */
    --border-color: #334155;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-xs: 6px;

    /* Text */
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-label: #cbd5e1;

    /* Accent */
    --accent: #10b981;
    --accent-hover: #059669;
    --accent-light: rgba(16, 185, 129, 0.15);
    --accent-secondary: #0f9d58;
    --accent-secondary-hover: #0d8a4d;

    /* Status */
    --color-error: #ef4444;
    --color-error-bg: rgba(220, 53, 69, 0.2);
    --color-error-border: #dc3545;
    --color-error-dark-bg: #7f1d1d;
    --color-error-dark-text: #fca5a5;
    --color-warning: #f59e0b;
    --color-warning-hover: #d97706;
    --color-info: #3b82f6;
    --color-info-hover: #2563eb;
    --color-success: #0f9d58;
    --color-success-bg: rgba(15, 157, 88, 0.2);
    --color-success-dark-bg: #14532d;
    --color-success-dark-text: #6ee7b7;

    /* Shadows */
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
}

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

a:hover {
    text-decoration: underline;
}
