      /* Generated theme CSS - uses CSS custom properties */
      :root {
  --color-primary: #ea2001;
  --color-primary-hover: #2563eb;
  --color-secondary: #6699cc;
  --color-secondary-hover: #7c3aed;
  --color-background: #ffffff;
  --color-surface: #f9fafb;
  --color-surface-hover: #f3f4f6;
  --color-text: #202020;
  --color-text-muted: #6b7280;
  --color-text-subtle: #9ca3af;
  --color-heading: #202020;
  --color-link: #336699;
  --color-link-hover: #003366;
  --color-link-visited: #7c3aed;
  --color-border: #000;
  --color-border-strong: #d1d5db;
  --color-focus: #3b82f6;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #06b6d4;
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, monospace;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --line-height-tight: 1.25;
  --line-height-loose: 1.75;
  --container-max: 1200px;
  --spacing-unit: 1.0rem;
  --spacing-section: 4.0rem;
  --radius-sm: 4px;
  --radius-default: 8px;
  --radius-lg: 16px;
  --border-width: 1px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-default: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
      }

      /* Apply theme variables to elements */
      body {
        font-family: var(--font-body);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        color: var(--color-text);
        background: var(--color-background);
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        color: var(--color-heading);
      }

      a {
        color: var(--color-link);
      }

      a:hover {
        color: var(--color-link-hover);
      }

      .container {
        max-width: var(--container-max);
      }

      .border, hr {
        border-color: var(--color-border);
      }

      /* Custom CSS */
      
