/**
 * CSS Cascade Layers Order Declaration
 *
 * Defines the stacking order for CSS layers in the application.
 * Layers declared later in this list have higher priority.
 *
 * - bootstrap: Bootstrap framework styles (lowest priority)
 * - theme-base: Global theme tokens and dark mode (darktheme.css)
 * - theme-brand: Brand mapping tokens (e.g., FLiPT)
 * - theme-league: Per-league theme tokens (ThemeCSS)
 * - components: Reusable component styles
 * - pages: Page-specific styles (highest priority)
 */
@layer bootstrap, theme-base, theme-brand, theme-league, components, pages;
