/* /js/share.css - the desktop fallback menu for the share button.
   The phone share sheet is the OS's own; this only styles the small popover
   shown when navigator.share is unavailable. */
.ccu-share-menu{
  z-index: 9999;
  min-width: 200px;
  background: #14120F;
  border: 1px solid rgba(251,250,247,.14);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
}
.ccu-share-menu a{
  font: 600 12px/1 'Satoshi Variable','Satoshi',system-ui,sans-serif;
  letter-spacing: .08em;
  color: rgba(251,250,247,.82);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 8px;
}
.ccu-share-menu a:hover,
.ccu-share-menu a:focus-visible{
  background: rgba(251,250,247,.08);
  color: #FBFAF7;
}
