/* css/variables.css */
:root {
  /* Colors */
  --bg-primary: #000000;
  --bg-secondary: #121212;
  --bg-glass: rgba(25, 25, 25, 0.6);
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --accent-color: #d1ff26; /* Artlist-like neon yellow/green */
  --accent-hover: #b4df1c;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-bg: #1a1a1a;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Spacing & Sizes */
  --header-height: 80px;
  --max-width: 1440px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-xxl: 120px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Shadows */
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --shadow-glow: 0 0 20px rgba(209, 255, 38, 0.3);
}

/* Dark theme specific adjustments if needed later */
[data-theme="dark"] {
  /* Currently default is dark, keeping this for potential extensibility */
}
