/* Flare Landing Page Theme */
/* Base resets and global styles are in layout.ejs <style> block */
/* This file contains additional theme overrides */

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #070711; }
::-webkit-scrollbar-thumb { background: rgba(0,245,196,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,245,196,0.4); }

/* Text selection */
::selection { background: rgba(0,245,196,0.2); color: #00f5c4; }

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