#interactive-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #020024; 
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #400000, #020024);
  z-index: -2;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  align-items: center;
  backdrop-filter: blur(10px);
}

main {
  width: 100%;
  margin-left: 0;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}

section {
  width: 90%;
  max-width: 600px; 
  margin: 30px auto;
  padding: 0px;
  backdrop-filter: blur(10px);
  border-radius: 1.5vh;
  border: 1px solid rgba(217, 185, 155, 0.1);
}

@media (max-width: 768px) {
  main {
    margin-left: 0; 
    margin-top: 70px; 
    padding: 10px;
    width: 100%;
  }
}




