html, body {
  height: 100%;
  margin: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  background-color: var(--bg-body, #111827);
  color: var(--text-primary, #ffffff);
}
.redirect-message {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4;
}
.dot {
  display: inline-block;
  opacity: 0;
  animation: dot-blink 1.2s infinite;
}
.dot1 {
  animation-delay: 0s;
}
.dot2 {
  animation-delay: 0.4s;
}
.dot3 {
  animation-delay: 0.8s;
}
@keyframes dot-blink {
  0%, 20% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
