:root {
  /* Backgrounds */
  --bg-page: #f5f7fa;
  --bg-card: #ffffff;
  --bg-preview: linear-gradient(135deg, #f0f4f8 0%, #e8edf2 100%);

  /* Borders */
  --border: #e2e8f0;
  --border-hover: #cbd5e0;

  /* Text */
  --text-primary: #1a202c;
  --text-secondary: #718096;
  --text-muted: #a0aec0;

  /* Accents */
  --accent-blue: #5b9bd5;
  --accent-blue-light: #7fb3e0;
  --accent-coral: #e8856c;
  --accent-coral-light: #f0a08a;
  --accent-green: #68d391;
  --accent-green-light: #8ae2a8;
  --accent-purple: #b794f4;
  --accent-purple-light: #c9aff7;
  --accent-yellow: #f6e05e;
  --accent-teal: #4fd1c5;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.04);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;

  /* Grid */
  --grid-gap: 24px;
  --card-min-width: 280px;
  --card-preview-height: 200px;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
