:root {
    /* Colors - Palette MDEE */
    --color-bg-dark: #0d0d0d;
    --color-bg-dark-alt: #1a1a2e;
    --color-bg-dark-card: #252540;
    --color-navy: #1b2a4a;
    --color-bg-light: #f5f5f5;
    --color-bg-white: #ffffff;
    --color-accent: #f0a500;
    --color-accent-hover: #ffb820;
    --color-accent-dark: #c88600;
    --color-text-light: #ffffff;
    --color-text-dark: #1a1a1a;
    --color-text-muted: #a0a0a0;
    --color-text-muted-dark: #666666;
    --color-border: #333333;
    --color-border-light: #e0e0e0;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 80px;
    --section-padding-y: 6rem;

    /* Effects */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}
