/* Brand badge → redirect button: solid black with white underline.
   Matches the WVE mono/topo theme so the exit affordance is visible
   against the dark canvas without breaking the HUD aesthetic. */
a#brand {
  text-decoration: none;
  background: #000;
  border-color: rgba(255, 255, 255, 0.28);
  pointer-events: auto;
  cursor: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
a#brand:hover {
  border-color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
a#brand:focus-visible {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 2px #fff;
}
a#brand .logo { color: #fff; }
a#brand .logo svg rect { fill: #fff !important; }
a#brand .logo-text { color: #fff; }
a#brand .logo-name {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
a#brand .logo-sub { color: rgba(255, 255, 255, 0.62); }

/* Hidden download link — used by removed screenshot/record paths; kept inert. */
#dl-link { display: none; }
