/* LineMax landing page styles */
/* Base styles are in layout.ejs; this file extends them */

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Smooth scroll */
html { scroll-behavior: smooth; }

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

/* Transitions */
a, button { transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
