#site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0c0f19;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.loader-box {
  text-align: center;
  color: white;
  font-family: Arial;
}

.loader-logo {
  width: 80px;
  margin-bottom: 10px;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: #333;
  margin-top: 15px;
  overflow: hidden;
}

.loader-progress {
  width: 0%;
  height: 100%;
  background: #2196f3;
  animation: loadbar 2.5s linear forwards;
}

@keyframes loadbar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
