html, body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}



body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

body.fade {
  opacity: 0;
  animation: fadeInPage 1.2s ease forwards;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to   { opacity: 1; }
}


canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(8px);
  pointer-events: none;
}


header {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}


main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}


footer {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}