
/* ==============================
   CONTAINER DE LOADING
================================ */
.loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;

  display: flex;
  flex-direction: column;          /* 👈 círculo em cima, texto embaixo */
  justify-content: center;
  align-items: center;
  gap: 18px;

  opacity: 1;
  transition: opacity 0.5s ease;
}


#loading {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loading.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ==============================
   SPINNER
================================ */
.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #ffb400;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==============================
   TEXTO ÉPICO
================================ */
.swal-game-text {
  color: #ffb400 !important;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  max-width: 90%;

  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0 0 10px rgba(255, 180, 0, 0.9),
     0 0 24px rgba(255, 140, 0, 0.8);

  animation: glowPulse 1.3s infinite alternate;
}

/* Brilho pulsante */
@keyframes glowPulse {
  from {
    text-shadow:
      -2px -2px 0 #000,
       2px -2px 0 #000,
      -2px  2px 0 #000,
       2px  2px 0 #000,
       0 0 8px rgba(255, 180, 0, 0.6);
  }
  to {
    text-shadow:
      -2px -2px 0 #000,
       2px -2px 0 #000,
      -2px  2px 0 #000,
       2px  2px 0 #000,
       0 0 16px rgba(255, 200, 0, 1),
       0 0 40px rgba(255, 140, 0, 0.9);
  }
}

/* ==============================
   MOBILE
================================ */
@media (max-width: 480px) {
  .spinner {
    width: 42px;
    height: 42px;
  }

  .swal-game-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
