:root {
            --primary: #2D3F54;
            --primary-dark: #2D3F54;
            --primary-light: #3f5875;
            --button-outline: #2D3F54;
            --button-outline-text: #2D3F54;
            --button-outline-soft: rgba(45, 63, 84, 0.12);
            --bg: #ffffff;
            --surface: #ffffff;
            --border: #e2e8f0;
            --text: #1e293b;
            --text-muted: #64748b;
            --success: #73CC80;
            --warning: #FF8F5C;
            --error: #F24F4F;
        }
        
        [data-theme="dark"] {
            --primary: #3f5875;
            --primary-dark: #2D3F54;
            --button-outline: #2D3F54;
            --button-outline-text: #d8e6f5;
            --button-outline-soft: rgba(45, 63, 84, 0.18);
            --bg: #0f172a;
            --surface: #1e293b;
            --border: #334155;
            --text: #f1f5f9;
            --text-muted: #94a3b8;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
        }
