#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Pixelify Sans', sans-serif;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #4285f4;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

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

.custom-spinner {
  display: flex;
  gap: 10px;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
}

.char {
  opacity: 0;
  animation: showChar 1.5s infinite;
}

.char1 {
  animation-delay: 0s;
}
.char2 {
  animation-delay: 0.5s;
}
.char3 {
  animation-delay: 1s;
}

@keyframes showChar {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 0; }
  100% { opacity: 0; }
}
