/* @charset "UTF-8";
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#content {
  padding: 20px;
  text-align: center;
}

.loading-overlay,
.loading-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

.loading-animation {
  display: flex;
  align-items: center;
}

.bar {
  width: 10px;
  height: 60px;
  margin-right: 5px;
  animation: growShrink 1s infinite;
}

.purple {
  background-color: #60bc45;
}

.cyan {
  background-color: #fcb827;
  animation-delay: 0.2s;
}

.green {
  background-color: #f68320;
  animation-delay: 0.4s;
}

.yellow {
  background-color: #e03a3c;
  animation-delay: 0.6s;
}

.pink {
  background-color: #963e95;
  animation-delay: 0.8s;
}

@keyframes growShrink {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.loader-top {
  height: 8px;
  width: 100vw;
  --c: no-repeat linear-gradient(var(--theme-color) 0 0);
  background: var(--c), var(--c), rgba(29, 179, 29, 0.24);
  background-size: 60% 100%;
  animation: l16 3s infinite;
}

@keyframes l16 {
  0% {
    background-position: -150% 0, -150% 0;
  }
  66% {
    background-position: 250% 0, -150% 0;
  }
  100% {
    background-position: 250% 0, 250% 0;
  }
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 0%,
      100% 0%,
      100% 0%
    );
  }
  25% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      100% 100%,
      100% 100%
    );
  }
  50% {
    clip-path: polygon(
      50% 50%,
      0 0,
      50% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  62.5% {
    clip-path: polygon(
      50% 50%,
      100% 0,
      100% 0%,
      100% 0%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  75% {
    clip-path: polygon(
      50% 50%,
      100% 100%,
      100% 100%,
      100% 100%,
      100% 100%,
      50% 100%,
      0% 100%
    );
  }
  100% {
    clip-path: polygon(
      50% 50%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      50% 100%,
      0% 100%
    );
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.loading-image {
  width: 300px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60vh;
}

.video {
  height: 80vh;
  margin: auto 0 auto 0;
}

.loader-container {
  width: 320px;
  padding: 24px;
  background-color: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #333333;
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
  position: relative;
}

.progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #1db31d, #5fd75f);
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.percent {
  font-size: 20px;
  font-weight: 600;
  margin: 12px 0;
  color: #ffffff;
}

.status-text {
  color: #b0b0b0;
  font-size: 14px;
  margin: 12px 0;
  min-height: 20px;
  line-height: 1.4;
}

.loader-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #ffffff;
} */
