/* Custom touches on top of Tailwind */
body {
  background-image: radial-gradient(ellipse 80% 60% at top, rgba(249, 115, 22, 0.08), transparent 60%);
  background-attachment: fixed;
}

/* Pretty scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #404040; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #525252; }

/* Selection */
::selection { background: rgba(249, 115, 22, 0.4); color: white; }

/* Chart container responsive */
canvas { max-width: 100%; }

/* Hover bump on cards */
.rounded-2xl { transition: transform 0.2s, box-shadow 0.2s; }
.rounded-2xl:hover { transform: translateY(-1px); }
