:root {
	/* Tell browsers this is a light theme */
    color-scheme: light;
	
    /* Light Theme (Apple/Microsoft inspired) */
    --bg-primary: #f5f5f7;
    --bg-secondary: #ffffff;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent: #0066cc;
    --gradient-1: #0066cc;
    --gradient-2: #3399ff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
	/* Tell browsers to force native UI (dropdowns/scrollbars) into dark mode */
    color-scheme: dark;
	
    /* Dark Theme (Dell/Cisco enterprise feel) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --accent: #2997ff;
    --gradient-1: #2997ff;
    --gradient-2: #8a2be2;
    --glass-bg: rgba(18, 18, 18, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}