:root {
  --brand: #6E00B3;
  --bg: #F7F7F9;
  --text: #111;
}
[data-bs-theme="dark"] {
  --bg: #0F0F12;
  --text: #EDEDED;
}
body { background: var(--bg); color: var(--text); }
.btn-primary { background-color: var(--brand); border-color: var(--brand); }
.btn-primary:hover { opacity: .9; }
