/* Browser users — hide app content, blur protected areas */
body.browser-access .app-only-content { display: none !important; }
body.browser-access .browser-only-content { display: block !important; }

body.browser-access .protected-content {
  position: relative;
  filter: blur(8px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
body.browser-access .protected-content::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
  z-index: 10;
}
body.browser-access .tauri-download-btn { display: none !important; }
