/* styles.css - Discord redirect page */
body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #5865F2, #23272A);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
  text-align: center;
}

.container {
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  width: 90%;
  animation: fadeIn 1s ease-in-out;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.6rem 0;
}

a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  background: #5865F2;
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
}

a:hover {
  background: #4752C4;
  transform: scale(1.05);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
