:root {
    /* PRIMARY — Teal */
    --color-primary: #00C9A7;
    --color-primary-dark: #009B75;
    --color-primary-light: #33D9B8;
    --color-primary-rgb: 0, 201, 167;

    /* SECONDARY — Deep Purple */
    --color-secondary: #0D0B1E;
    --color-secondary-dark: #070510;
    --color-secondary-light: #15133A;
    --color-secondary-rgb: 13, 11, 30;

    /* ACCENT — Coral */
    --color-accent: #FF6B6B;
    --color-accent-dark: #E04545;
    --color-accent-light: #FF9999;
    --color-accent-rgb: 255, 107, 107;

    /* Background */
    --color-bg: #0D0B1E;
    --color-bg-dark: #070510;
    --color-bg-light: #15133A;
    --color-bg-card: #15133A;
    --color-bg-header: rgba(13, 11, 30, 0.0);
    --color-bg-footer: #070510;
    --color-bg-section: #0D0B1E;
    --color-bg-section-alt: #111022;

    /* Text */
    --color-text: #E8EDF4;
    --color-text-light: #C0D0E0;
    --color-text-dark: #ffffff;
    --color-text-white: #ffffff;
    --color-text-muted: #8098B8;

    /* Borders */
    --color-border: rgba(0, 201, 167, 0.18);
    --color-border-light: rgba(255, 255, 255, 0.07);
    --color-border-gold: rgba(255, 107, 107, 0.25);

    /* Announce bar */
    --announce-bar-height: 40px;

    /* Header */
    --header-height: 70px;
    --cb-total-header: 110px;
    --header-bg: rgba(13, 11, 30, 0.96);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-accent: 'Barlow Condensed', sans-serif;

    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;

    /* Font Sizes */
    --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: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 9999px;
    --radius-btn: 6px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.5);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.7);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.8);
    --shadow-blue: 0 0 24px rgba(0, 201, 167, 0.35);
    --shadow-gold: 0 0 20px rgba(255, 107, 107, 0.25);

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.18s ease;

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-fixed: 1000;
    --z-modal: 2000;
    --z-overlay: 900;
}