.floating-coder-bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  filter: blur(0.5px) brightness(1.05);
  transition: opacity 0.5s;
}

body, html {
  background: #181824;
}

@media (max-width: 700px) {
  .floating-coder-bg-canvas {
    opacity: 0.7;
    filter: blur(1px) brightness(1.1);
  }
}
