body {
  background-color: #2f3136;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 900px;
  margin: auto;
}
h1 {
  color: #fff;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.card {
  background-color: #36393f;
  border-radius: 8px;
  padding: 1rem;
  width: 100%;
  max-width: 400px;
}
.card-header {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card-body {
  font-size: 0.9rem;
}
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #7289da;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}
.logout {
  display: inline-block;
  margin-top: 20px;
  color: #f04747;
  text-decoration: none;
}
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
}

.discord-btn {
  display: inline-block;
  background-color: #5865F2;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}

.discord-btn:hover {
  background-color: #4752c4;
}
