/* Colonized.net Theme - Deep earthy palette */
:root {
  /* Deep, earthy theme */
  --background: #1e1e1e; /* Dark slate */
  --surface-secondary: #2c2c2c; /* Slightly lighter gray */
  --foreground: #f4f4f4; /* Off-white text */
  --accent: #cd7f32; /* Bronze/Copper accent */
  --muted-dark: #000000; /* Deep black */
  --border-color: #3b3b3b; /* Subtle dark border */
  --text-muted: #a0a0a0; /* Muted gray text */
  color-scheme: dark;
}

/* Dark theme explicit */
:root[data-theme="dark"] {
  --background: #1e1e1e;
  --surface-secondary: #2c2c2c;
  --foreground: #f4f4f4;
  --accent: #cd7f32;
  --muted-dark: #000000;
  --border-color: #3b3b3b;
  --text-muted: #a0a0a0;
  color-scheme: dark;
}

/* Compatibility variables used by layout.tsx */
:root, :root[data-theme="dark"] {
  --surface-header: rgba(30,30,30,0.95);
  --surface-footer: rgba(30,30,30,0.9);
  --text-subtle: #a0a0a0;
}
