body {
  background-color: #121212;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

#loading-container {
  height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #121212;
}

#loading-logo {
  width: 240px;
  height: auto;
  margin-bottom: 40px;
  animation: pulse 2s ease-in-out infinite;
}

#loading-spinner {
  width: 50px;
  height: 50px;
  border: 8px solid rgba(239, 239, 239, 0.1);
  border-top: 8px solid #FFAB40;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 30px;
}

#loading-message {
  display: flex;
  gap: 12px;
}

#loading-text {
  color: #efefef;
  font-size: 29pt;
  font-weight: 300;
  letter-spacing: 0.5px;
}

#loading-dots {
  display: inline-block;
  margin-left: 2px;
}

#loading-dots .dot {
  opacity: 0;
  animation: fade-in-out 1.4s infinite;
}

#loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}

#loading-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

#loading-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes fade-in-out {
  0%, 60%, 100% { opacity: 0; }
  20%, 40% { opacity: 1; }
}
