.cvj-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cvj-icon svg {
  animation: cvj-pulse 2s ease-in-out infinite;
}

.cvj-brand {
  font-family: sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.cvj-accent {
  color: #c8860a;
}

.cvj-dots {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.cvj-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8860a;
  animation: cvj-bounce 1.2s ease-in-out infinite;
  opacity: 0.3;
}

.cvj-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.cvj-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes cvj-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes cvj-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.app-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}
