:root {
  --bg: #0b1020;
  --surface: #121a2b;
  --surface-2: #18233d;
  --text: #f3f4f6;
  --muted: #a8b0c0;
  --accent: #8b9cff;
  --accent-soft: #202c4b;
  --border: #26324d;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  --good: #5eead4;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: -apple-system, sans-serif;
}

.app {
  max-width: 760px;
  margin: auto;
  padding: 16px;
}

h1 {
  font-size: 1.5rem;
}

.chips {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.chip {
  background: var(--surface-2);
  padding: 6px 10px;
  border-radius: 20px;
}

.toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

button, select {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: 20px;
  min-height: 300px;
}

.hidden {
  display: none;
}

html, body {
  background: var(--bg);
  color: var(--text);
}

select,
button {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}