/* Your styles. Tailwind handles utilities; put custom bits here — this file
   loads after Tailwind, so it wins on conflicts. One knob to start: */
:root {
  --accent: #6366f1; /* indigo-500 */
}

.btn {
  background: var(--accent);
  color: white;
}
.btn:hover {
  filter: brightness(1.1);
}
