:root {
  /* Brand */
  --gold: #b58b3e;
  --gold-light: #d4a853;
  --gold-dark: #8a6a2e;
  --gold-subtle: rgba(181, 139, 62, 0.12);

  /* Dark theme (default) */
  --bg-primary: #0e0e0e;
  --bg-secondary: #161616;
  --bg-tertiary: #1e1e1e;
  --bg-hover: #252525;
  --bg-card: #181818;

  /* Borders */
  --border: #2a2a2a;
  --border-light: #333333;

  /* Text */
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #606060;

  /* Status colors */
  --green: #3ecf8e;
  --green-subtle: rgba(62, 207, 142, 0.12);
  --red: #f87171;
  --red-subtle: rgba(248, 113, 113, 0.12);
  --yellow: #fbbf24;
  --yellow-subtle: rgba(251, 191, 36, 0.12);
  --blue: #60a5fa;
  --blue-subtle: rgba(96, 165, 250, 0.12);

  /* Sidebar */
  --sidebar-width: 240px;
  --sidebar-bg: #111111;

  /* Topbar */
  --topbar-height: 60px;

  /* Typography */
--font: 'UntitledSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 20px rgba(181, 139, 62, 0.2);

  /* Transitions */
  --transition: 0.18s ease;
  --transition-slow: 0.3s ease;

  /* Z-index */
  --z-sidebar: 100;
  --z-topbar: 200;
  --z-modal: 300;
  --z-toast: 400;
}

/* Light theme overrides */
[data-theme="light"] {
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --bg-tertiary: #efefef;
  --bg-hover: #e8e8e8;
  --bg-card: #ffffff;

  --border: #e0e0e0;
  --border-light: #d0d0d0;

  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;

  --sidebar-bg: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
}