:root {
    /* Main Colors */
    --primary: #FF6B00;
    /* Vibrant Orange */
    --secondary: #E65100;
    /* Deep Orange */
    --accent: #FF9800;
    /* Bright Orange */

    /* Functional Colors */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;

    /* Neutrals */
    --white: #ffffff;
    --light: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #343a40;
    --dark: #212529;
    --black: #000000;

    /* Shadows & Border Radius */
    --radius: 12px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}