body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  cursor: url('/cursor.cur'), auto;
}

.container {
  text-align: center;
}

.container_bio {
  max-width: 600px;
  padding: 20px;
  text-align: center;
}

.avatar-wrapper {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto;
}

.avatar {
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.decoration {
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  height: 130%;
  z-index: 3;
  pointer-events: none;
}


.name {
  font-size: 2.5em;
  font-weight: bold;
  filter: drop-shadow(0 0 3px white);
  margin: 10px 0;
  text-shadow: 0 0 10px #fff4;
}

.name2 {
  font-size: 2em;
  font-weight: bold;
  margin: 20px 0 12px;
  text-shadow: 0 0 10px #fff4;
  filter: drop-shadow(0 0 3px white);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: white;
}

.name2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background-color: #5865f2;
  margin: 6px auto 0;
  border-radius: 2px;
}

.desc_name {
  font-size: 1.1em;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 1px white);
  color: #ccc;
}

.desc {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 12px;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
}

.card {
  background: #1e1f22;
  border-radius: 15px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 30px;
  box-shadow: 0 0 10px #0005;
}

.card_bio {
  background: #1e1f22;
  border-radius: 15px;
  padding: 20px 24px;
  margin-bottom: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 0 15px #0008;
  text-align: left;
  box-sizing: border-box;
}
.card-pfp {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 10px;
}

.card-info {
  text-align: left;
}

.card-name {
  font-weight: 600;
  font-size: 1.1em;
}

.badge {
  background: #5865f2;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.status {
  display: block;
  font-size: 0.95em;
  color: #bbb;
  margin-top: 4px;
}

.flag {
  margin-left: 4px;
}

.icons {
  margin-top: 20px;
}

.icon {
  width: 40px;
  margin: 0 10px;
  filter: drop-shadow(0 0 10px white);
  transition: transform 0.2s;
}

.icon:hover {
  transform: scale(1.1);
}

.highlight {
  filter: drop-shadow(0 0 10px white);
  font-weight: 600;
  color: white;
}