:root {
    /* Colors */
    --color-anima-primary: #00ffcc;
    /* Example Cyan */
    --color-anima-secondary: #ff0099;
    /* Example Pink */
    --color-anima-bg-dark: #121212;
    --color-anima-bg-card: #1e1e1e;
    --color-anima-text-main: #ffffff;
    --color-anima-text-muted: #888888;
    --color-anima-border: #333333;

    /* Typography */
    --font-anima-primary: 'Inter', sans-serif;
    --font-anima-headings: 'Outfit', sans-serif;

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

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 10px rgba(0, 255, 204, 0.3);
}