:root {
  --bg: #ffffff;
  --text: #212529;
  --accent: #0d6efd;
  --button: #0d6efd;
  --radius: 12px;
  --font-family: system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-family);
}

.navbar,
.card {
  background-color: color-mix(in srgb, var(--bg) 92%, #ffffff 8%);
}

.card,
.btn,
.alert {
  border-radius: var(--radius);
}

.btn-primary {
  background-color: var(--button);
  border-color: var(--button);
}

a,
.navbar-brand {
  color: var(--accent);
}

.theme-saas {
  --bg: #0d1117;
  --text: #e6edf3;
  --accent: #00f2fe;
  --button: #00f2fe;
  --radius: 12px;
  --font-family: "Inter", sans-serif;
}

.theme-ecom {
  --bg: #ffffff;
  --text: #0a2540;
  --accent: #0a2540;
  --button: #28a745;
  --radius: 8px;
  --font-family: "Roboto", sans-serif;
}

.theme-kids {
  --bg: #fffaf0;
  --text: #5b4a42;
  --accent: #88d8c0;
  --button: #ffb4a2;
  --radius: 20px;
  --font-family: "Nunito", sans-serif;
}

.theme-crypto {
  --bg: #0b0e14;
  --text: #f5e6c8;
  --accent: #fcd535;
  --button: #16c784;
  --radius: 12px;
  --font-family: "Space Grotesk", sans-serif;
}
