/* Isometric Background Styles */
.isometric-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.isometric-background svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.03;
}

/* Ensure content appears above background */
body > *:not(.isometric-background) {
  position: relative;
  z-index: 1;
}

