.discord-loader {
  position: fixed;
  inset: 0;
  height: 100dvh;
  background: #0f0f13;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* Dice */
.dice-gg {
  margin-bottom: 14px;
  animation: diceRotate 4s linear infinite,
             diceFloat 2.5s ease-in-out infinite;
}

@keyframes diceRotate {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes diceFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Discord dots */
.dots {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.dots span {
  width: 7px;
  height: 7px;
  background: #b9bbbe;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dots span:nth-child(1){animation-delay:-0.32s}
.dots span:nth-child(2){animation-delay:-0.16s}

@keyframes bounce {
  0%,80%,100% { transform: scale(0); opacity:.3 }
  40% { transform: scale(1); opacity:1 }
}

#globalLoader{
  position: fixed;
  inset: 0;
  z-index: 99999; /* HARUS LEBIH BESAR DARI MODAL */
}