/* ============================================
   VARIABLES.CSS - CSS Custom Properties & Theme
   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");

:root {
  /* Colors - Background */
  --bg-color: #121212;
  --card-bg: #1e1e1e;
  --border-color: #333;
  
  /* Colors - Text */
  --text-color: #e0e0e0;
  --text-muted: #888;
  
  /* Colors - Accent */
  --accent-color: #9c88ff;
  --accent-hover: #8e78ff;
  --accent-light: rgba(156, 136, 255, 0.15);
  
  /* Colors - Status */
  --success-color: #2ecc71;
  --success-bg: rgba(46, 204, 113, 0.15);
  --danger-color: #c0392b;
  --danger-bg: #ff453a;
  --danger-light: rgba(231, 76, 60, 0.15);
  
  /* Shadows */
  --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --box-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --font-main: "Inter", sans-serif;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
