body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.card {
  width: min(720px, 90vw);
  padding: 40px;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

a,
button {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.secondary {
  background: #374151;
}

.muted {
  opacity: .75;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 8px;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
