/* Középre igazítjuk a tartalmat a teljes képernyőn */
.redirect-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redirect-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.redirect-card {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 40px 30px;
}

.redirect-card h1 {
  font-size: clamp(26px, 3vw, 42px);
  margin-top: 0;
}

.discord-accent {
  color: #5865F2; /* Discord hivatalos "Blurple" színe */
}

/* Egyedi betöltő animáció */
.loader {
  border: 4px solid var(--border);
  border-left-color: #5865F2; 
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.manual-link {
  color: #5865F2;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.manual-link:hover {
  color: #7289da;
  text-decoration: underline;
}