body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #020617, #020617, #0f172a);
  color: white;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card {
  background: #020617;
  padding: 30px;
  border-radius: 20px;
  width: 350px;
  margin: 90px auto;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  background: #020617;
  color: white;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 15px;
  background: #22c55e;
  color: black;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

button:hover {
  transform: scale(1.05);
}

.nav {
  text-align: center;
  margin-top: 20px;
}

.nav a {
  color: #22c55e;
  text-decoration: none;
  margin: 0 10px;
}
.discord-join {
  margin-top: 40px;
  text-align: center;
}

.discord-join p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.discord-btn {
  padding: 14px 35px;
  font-size: 18px;
  border-radius: 16px;
  border: none;
  background: #5865F2;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(88,101,242,0.6);
  animation: discordPulse 1.5s infinite;
  transition: transform 0.2s ease;
}

.discord-btn:hover {
  transform: scale(1.08);
}

@keyframes discordPulse {
  0% { box-shadow: 0 0 10px rgba(88,101,242,0.6); }
  50% { box-shadow: 0 0 30px rgba(88,101,242,1); }
  100% { box-shadow: 0 0 10px rgba(88,101,242,0.6); }
}
.site-footer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: #0f0f0f;
  margin-top: 60px;
}

.terms-link {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.terms-link:hover {
  color: #ffffff;
}

