/* ============================================
   CSS Variables & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Background colors */
    --bg-dark: #09090b;
    --bg-darker: #050506;
    --surface: #18181b;
    --surface-hover: #27272a;
    --surface-light: #3f3f46;
    
    /* Border colors */
    --border: #27272a;
    --border-light: #3f3f46;
    
    /* Text colors */
    --text: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Brand accent colors */
    --accent: #D4AF37;
    --accent-hover: #e5c04a;
    --accent-dark: #b8972e;
    --accent-glow: rgba(212, 175, 55, 0.15);
    
    /* Secondary accent (purple) */
    --secondary: #8B5CF6;
    --secondary-hover: #A78BFA;
    --secondary-dark: #7C3AED;
    --secondary-glow: rgba(139, 92, 246, 0.15);
    
    /* Status colors */
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --success: #22c55e;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 24px;
    --spacing-2xl: 32px;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.1s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px var(--accent-glow);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
