@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-dark: #B8960C;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --gold-light: rgba(212, 175, 55, 0.12);
  --gold-subtle: rgba(212, 175, 55, 0.06);

  --bg: #FFFFFF;
  --bg-subtle: #FAFAFA;
  --bg-muted: #F5F5F5;

  --text: #111111;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;

  --border: #E5E7EB;
  --border-subtle: #F3F4F6;

  --success: #22C55E;
  --success-light: rgba(34, 197, 94, 0.1);
  --error: #EF4444;
  --error-light: rgba(239, 68, 68, 0.1);
  --warning: #F59E0B;
  --warning-light: rgba(245, 158, 11, 0.1);
  --blue: #3B82F6;
  --blue-light: rgba(59, 130, 246, 0.1);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-gold: 0 0 0 2px var(--gold), 0 0 12px var(--gold-glow);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: all 0.2s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.3s ease;

  --sidebar-width: 220px;
  --right-panel-width: 260px;
  --topnav-height: 56px;
  --header-height: 64px;
}
