:root {
  /* Color Palette - Graphite Dark & Blood Red Accents */
  --bg: #050608; /* Graphite */
  --bg-soft: #0a0b0e;
  --bg-darker: #020203;
  
  --surface: rgba(16, 18, 24, 0.85); /* Darker glassmorphism */
  --surface-soft: rgba(24, 27, 36, 0.75);
  --surface-hover: rgba(30, 34, 45, 0.85);
  --surface-glass: rgba(10, 12, 16, 0.7);
  
  --border: rgba(180, 22, 42, 0.15); /* Red tinted border */
  --border-soft: rgba(255, 255, 255, 0.03);
  --border-glow: rgba(180, 22, 42, 0.6);

  --text: #e0e0e5; /* Dead pale text */
  --text-muted: #757885;
  --text-soft: #4a4d55;

  --accent: #b4162a; /* Bloody red */
  --accent-hover: #cf1930;
  --accent-active: #8f1222;
  --accent-soft: rgba(180, 22, 42, 0.15);
  --accent-glow: rgba(180, 22, 42, 0.5);
  --accent-gradient: linear-gradient(135deg, #b4162a 0%, #680b17 100%);

  --success: #67a65c;
  --warning: #c99a27;
  --danger: #d91c34;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Geometry & Spacing */
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  
  /* Shadows & Glows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.6);
  --shadow-red: 0 0 20px rgba(180, 22, 42, 0.25);
  --shadow-red-strong: 0 0 40px rgba(180, 22, 42, 0.5);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
