/* Site-wide light/dark theme for vaazee.net chrome pages.
   Dark is each page's built-in :root default; these rules supply the LIGHT
   overrides (higher specificity than :root) plus the floating toggle button.
   Covers the union of variables used across the landing, category listings,
   and games index. */
:root[data-theme="light"]{
  --bg:#ffffff;
  --card:#f6f8fa;
  --panel:#f6f8fa;
  --border:#d0d7de;
  --line:#d8dee4;
  --text:#1f2328;
  --muted:#59636e;
  --accent:#0969da;
}

/* floating toggle */
#vz-theme-toggle{
  position:fixed; top:14px; right:14px; z-index:1000;
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; line-height:1; cursor:pointer;
  background:var(--card,#161b22);
  color:var(--text,#e6edf3);
  border:1px solid var(--border,#30363d);
  box-shadow:0 2px 10px rgba(0,0,0,.25);
  transition:border-color .15s ease, transform .12s ease, background .2s ease;
  -webkit-tap-highlight-color:transparent;
}
#vz-theme-toggle:hover{ border-color:var(--accent,#58a6ff); transform:translateY(-1px); }
#vz-theme-toggle:active{ transform:translateY(0); }
