@import url("base.css");
@import url("navbar.css");
@import url("header.css");
@import url("download.css");
@import url("feature.css");
@import url("news.css");
@import url("faq.css");
@import url("footer.css");

body {
  cursor: url('../images/c.png'), auto;
}

a,
button {
  cursor: url('../images/p.png'), auto;
}

.m-pointer {
  cursor: url('../images/p.png'), auto;
}


#bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #041735;
  min-height: 110vh;
}

#glow-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

#particles-js {
  /* position: absolute; */
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -2;
}

.slide-right {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(200%);
  opacity: 0;
}

.slide-left {
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-200%);
  opacity: 0;
}

.slide-right.visible {
  transform: translateX(0);
  opacity: 1;
}

.slide-left.visible {
  transform: translateX(0);
  opacity: 1;
}

body {
  overflow-x: hidden;
}

.container {
  overflow-x: hidden;
}


.main-title,
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
}

.highlight {
  color: #1e90ff;
}

.subtitle {
  text-align: center;
  color: #8a8a8a;
  margin-bottom: 40px;
  font-size: 14px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #041735;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader {
  text-align: center;
  color: white;
}


.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top: 5px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader p {
  font-family: 'Tahoma', sans-serif;
  font-size: 18px;
  margin: 0;
}

.fade-out {
  opacity: 0;
  pointer-events: none;
}

.progress-bar {
  width: 300px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin: 20px auto;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}