@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap');

:root {
    --bg-color: #0f172a;       
    --card-bg: #1e293b;        
    --text-main: #f8fafc;      
    --text-muted: #94a3b8;     
    --primary: #8b5cf6;       
    --primary-dark: #6d28d9;   
    --secondary: #3b82f6;      
    --accent: #10b981;         
    --border: #334155;         
    --danger: #ef4444;         
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 15px rgba(139, 92, 246, 0.4);
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', system-ui, sans-serif; 
}

body { 
    background-color: var(--bg-color); 
    background-image: radial-gradient(circle at top right, #1e1b4b 0%, var(--bg-color) 40%);
    color: var(--text-main); 
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1 { 
    margin-bottom: 0.5rem; 
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--text-main); 
}

p { 
    color: var(--text-muted);
    margin-bottom: 1.5rem; 
}