:root {
  /* Brand Colors */
  --brand-main: #6366f1;
  --brand-accent: #a855f7;
  --brand-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --brand-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%);

  /* Layout Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
}

html {
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Default baseline (Dark Mode) */
  --bg-main: #020617;
  --bg-card: #0f172a;
  --bg-glass: rgba(15, 23, 42, 0.85);
  --text-main: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-light: #334155;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
  --shadow-neon: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* LIGHT MODE */
.light-mode {
  --bg-main: #f1f5f9;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.9);
  --text-main: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-neon: 0 0 15px rgba(99, 102, 241, 0.15);
}

/* DARK MODE */
.dark-mode {
  --bg-main: #020617;
  --bg-card: #0f172a;
  --bg-glass: rgba(15, 23, 42, 0.9);
  --text-main: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #1e293b;
  --border-light: #334155;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4);
  --shadow-neon: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Global Semantic Colors */
:root {
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
}