/* Loader styles */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #0a0a0a;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo-image {
  width: 80px;
  height: 80px;
  animation: pulse 2s infinite;
}

.logo-text {
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background-color: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4a90e2, #63b3ed);
  transition: width 0.3s ease;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}