/* Modern theme background toggle */
.modern-bg {
  background: url('/img/Background/geralt-binary-4887768_1920.jpg') center center/cover no-repeat fixed;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}

/* Overlay always behind content */
.modern-bg::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.25); /* or rgba(0,0,0,0.15) for dark overlay */
  pointer-events: none;
  z-index: 0;
}

body.modern-bg > * {
  position: relative;
  z-index: 1;
}
