/* BreachReady — custom theme additions */
/* Base styles are in layout.ejs <style> block */

/* Accent highlight on hover states */
.hero-badge::before { animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--green); }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green)40; }

/* Text selection */
::selection { background: var(--green)30; color: var(--text); }

/* Smooth link behavior */
a { color: var(--green); text-decoration: none; }

a:hover { text-decoration: underline; }

/* Focus visible for accessibility */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }