/* Casa — дополнения к Tailwind CDN */

html, body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.prose-invert pre,
.prose-invert code {
  background-color: #0b0c1e;
  color: #e2e8f0;
}

/* htmx fade-in */
[hx-swap-oob] {
  animation: fade-in 0.2s ease-out;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* scrollbar в тёмной теме */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0b0c1e; }
::-webkit-scrollbar-thumb { background: #2a2f5c; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #7c7cff; }
