/* base reset */
*, *::before, *::after { box-sizing: border-box; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(200,248,58,0.3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(200,248,58,0.5); }

/* Text selection */
::selection { background: rgba(200,248,58,0.25); color: var(--text); }

/* Focus states */
:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; border-radius: 4px; }

/* Ensure smooth font rendering */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
