:root {
    /* Fonts */
    --font-main: Arial, Helvetica, sans-serif;
    --font-heading: Arial, Helvetica, sans-serif;

    /* Main colors */
    --color-bg: #0f172a;
    --color-surface: #1e293b;
    --color-surface-light: #334155;

    --color-text: #f8fafc;
    --color-text-muted: #cbd5e1;

    --color-primary: #38bdf8;
    --color-primary-hover: #0ea5e9;

    --color-border: #334155;

    /* Layout */
    --container-width: 1100px;
    --section-padding-y: 6rem;
    --section-padding-x: 1.5rem;

    /* Header */
    --header-height: 80px;
    --header-z-index: 1000;

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

    /* Font sizes */
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;

    /* Borders and shadows */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;

    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.25);

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}