/**
 * Theme System
 *
 * Main entry point for theme configuration
 * Aggregates all theme-related styles in logical order:
 * 1. Tailwind tokens (@theme)
 * 2. Custom animations (@keyframes)
 * 3. Light theme colors (:root)
 * 4. Dark theme colors (.dark)
 */

/* 1. Tailwind v4 theme tokens - MUST be first */
@import "./theme/tokens.css";

/* 2. Custom animations */
@import "./theme/animations.css";

/* 3. Light theme (default) */
@import "./theme/light.css";

/* 4. Dark theme */
@import "./theme/dark.css";
