/* Gold-glow scrollbar (chosen mockup #4). Self-contained + REVERSIBLE:
   to restore the native bar, remove the <link ... scrollbar.css> from
   assets/inc/head.php + index.php (or just delete this file). */

/* Firefox (can't do gradient/glow — uses the two standard props) */
html{ scrollbar-color:#c9922a #100c08; scrollbar-width:auto; }

/* Chrome / Edge / Safari */
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:#100c08; }
::-webkit-scrollbar-thumb{
  background:linear-gradient(#e8b84b,#c9922a);
  border-radius:6px;
  box-shadow:0 0 6px rgba(201,146,42,.6);
}
::-webkit-scrollbar-thumb:hover{ background:linear-gradient(#f2c65e,#d89e30); }
::-webkit-scrollbar-corner{ background:#100c08; }

@media(prefers-reduced-motion:reduce){ ::-webkit-scrollbar-thumb{ box-shadow:none; } }
