/* CSS Variables and Theme Configuration */
:root {
    /* Primary Colors */
    --primary: #2563EB;
    --primary-light: #DBEAFE;
    --primary-dark: #1D4ED8;
    --secondary: #4F46E5;
    
    /* Background Colors */
    --bg: #F1F5F9;
    --surface: #FFFFFF;
    --surface-glass: rgba(255, 255, 255, 0.88);
    
    /* Text Colors */
    --text: #0F172A;
    --text-muted: #64748B;
    
    /* Border Colors */
    --border: #E2E8F0;
    
    /* Status Colors */
    --success: #10B981;
    --success-bg: #F0FDF4;
    --success-border: #6EE7B7;
    --warning: #F59E0B;
    
    /* Code Display Colors */
    --code-bg: #0F172A;
    --code-text: #E2E8F0;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius: 16px;
    --radius-sm: 10px;
}

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

/* Body Styles */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Heading Styles */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}
