/* Background image fit */
#__next .fixed {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/*
 * Zinc dark–style lift over busy wallpaper: ~default feel, a bit more separation.
 * zinc-800 (#27272a) at modest opacity — not flat charcoal.
 */
#__next :not(.fixed)[class*="bg-white/"],
#__next :not(.fixed)[class*="bg-theme-200/"],
#__next :not(.fixed)[class*="bg-black/"] {
  background-color: rgba(39, 39, 42, 0.52) !important;
  backdrop-filter: blur(8px) saturate(1.02);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

/* Search + text inputs — zinc-800-ish, not near-black */
#__next input[type="text"],
#__next input[type="search"] {
  background-color: rgba(39, 39, 42, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fafafa !important;
}

/* Section titles — light shadow only where text crosses the wallpaper */
#__next h2,
#__next h3,
#__next .text-theme-500 {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 0 12px rgba(0, 0, 0, 0.35);
}

#__next [class*="text-theme-500/"] {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

#__next [class*="border-white/"] {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
