html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #ffffff;
}

#loading-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999;
}

#loading-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

#loading-text {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #b8860b;
  animation: glow 1.8s ease-in-out infinite;
  margin-bottom: 20px;
}

.dot {
  opacity: 0;
  animation: blink 1.2s infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes glow {
  0% {
    text-shadow: 0 0 0px #b8860b;
    opacity: 0.92;
  }
  50% {
    text-shadow: 0 0 1px #b8860b, 0 0 3px #b8860b;
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 0px #b8860b;
    opacity: 0.92;
  }
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

.bouncing-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot-loader {
  width: 12px;
  height: 12px;
  background-color: #b8860b;
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.dot-loader:nth-child(1) { animation-delay: 0s; }
.dot-loader:nth-child(2) { animation-delay: 0.15s; }
.dot-loader:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
}
