.parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.para {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 100vh;
  will-change: transform;
  transition: transform 0.05s linear;
}

.para1 {
  bottom: -80px; 
  top: auto;
  min-height: calc(100vh + 80px);
  z-index: 4;
}

.para2 {
  bottom: -30px;
  top: auto;
  min-height: calc(100vh + 30px);
  z-index: 3;
}

.para3 {
  top: -150px;
  min-height: calc(100vh + 150px);
  z-index: 2;
}

.para4 {
  top: 0;
  min-height: 100vh;
  z-index: 1;
}

#site-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#sections-container {
  position: relative;
  flex: 1;
  will-change: transform;
  transform-style: preserve-3d;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

section#header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
}

.header-to-features-connector {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #241511);
  z-index: 5;
}

section#features {
  position: relative;
  padding: 190px 0 80px;
  margin-top: 0;
  z-index: 9;
}

section#discord-and-faq {
  padding: 0;
  margin: 0;
  z-index: 8;
}

footer {
  position: relative;
  z-index: 5;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 60px 0 30px;
  margin-top: 0;
}

section#discord-and-faq::after {
  bottom: -10px;
  height: 20px;
}

.navbar-container {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 20px;
  pointer-events: none;
}

.floating-navbar {
  pointer-events: auto;
}

#header::after,
section::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #241511;
  z-index: 10;
}

@media (max-width: 768px) {
  section#features {
    padding: 190px 0 60px;
    margin-top: 0;
  }
  
  section#discord-and-faq {
    padding: 0;
  }
  
  .para1 {
    bottom: -80px;
    min-height: calc(100vh + 80px);
  }
  
  .para3 {
    top: -150px;
    min-height: calc(100vh + 150px);
  }
}

@media (max-width: 480px) {
  section#features {
    padding: 160px 0 50px;
    margin-top: 0;
  }
  
  .para1 {
    bottom: -80px;
    min-height: calc(100vh + 80px);
  }
  
  .para3 {
    top: -150px;
    min-height: calc(100vh + 150px);
  }
}