/* ============================================ */
/* LOADING SCREEN */
/* ============================================ */
.loading-container {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loading-title {
  font-size: 3em;
  color: #6C5CE7;
  margin-bottom: 2em;
  text-shadow: 0 0 30px rgba(108, 92, 231, 0.8);
  letter-spacing: 0.1em;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(108, 92, 231, 0.2);
  border-top-color: #6C5CE7;
  border-radius: 50%;
  margin: 0 auto 2em;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 1.2em;
  color: #EAEAEA;
  margin-bottom: 1em;
}

.loading-bar {
  width: 100%;
  height: 8px;
  background: rgba(61, 52, 96, 0.8);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #6C5CE7, #A29BFE);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.6);
}

.loading-percent {
  font-size: 1em;
  color: #F9CA24;
  font-weight: bold;
}