.sw-loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: #212631;
  z-index: 9999;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sw-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  animation: sw-logo-pulse 2s ease-in-out infinite;
}

.sw-loader-bar {
  width: 120px;
  height: 4px;
  background-color: rgba(255, 151, 0, 0.15);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}

.sw-loader-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background-color: #ff9700;
  border-radius: 2px;
  animation: sw-load 1.5s infinite ease-in-out;
}

@keyframes sw-logo-pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes sw-load {
  0% {
    left: -40%;
  }
  100% {
    left: 100%;
  }
}

.sw-loading-text {
  color: #ff9700;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff9700, #ffb547);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sw-text-pulse 1.5s ease-in-out infinite;
}

@keyframes sw-text-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
