/* Vanta.js 3D animated background */

#vanta-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

/* Ensure content stays above Vanta background with improved visibility */
#root {
  position: relative;
  z-index: 1;
  background: rgba(20, 20, 35, 0.75);
  backdrop-filter: blur(8px);
}

body {
  overflow-x: hidden;
  background: transparent;
}
