:root {
  /* Colors - Joyful & Bright Palette */
  --color-primary: #4a90e2;
  --color-primary-hover: #357abd;
  --color-secondary: #ff7043;
  --color-accent-yellow: #ffca28;
  --color-accent-green: #66bb6a;
  --color-accent-purple: #ab47bc;

  --color-bg: #f4fbfd;
  --color-surface: #ffffff;
  --color-card-bg: #ffffff;
  --color-border: #e0f2f1;

  --color-text: #2d3748;
  --color-text-muted: #718096;
  --color-success: #2e7d32;
  --color-error: #e53935;

  /* Typography */
  --font-primary: 'Comfortaa', 'Fredoka', 'Quicksand', system-ui, sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.25rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2.5rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}
