#profilesection {
  text-decoration: none;
  display: block;
  border-radius: 4px !important;
  border: 1px solid var(--nl-line) !important;
  background:
    radial-gradient(ellipse at top right, rgba(212,160,23,.12), transparent 48%),
    linear-gradient(180deg, rgba(28,24,18,.9), rgba(10,8,5,.96)) !important;
  box-shadow: var(--nl-shadow-deep);
  overflow: hidden;
}
#profilesection a { text-decoration: none; }
#profilesection .text {
  font-size: var(--text-size-lg);
  font-weight: 800;
  color: var(--nl-parchment);
  font-family: "Cinzel", serif;
  letter-spacing: .06em;
}
#profilesection .rank {
  font-size: var(--text-size-sm);
  font-weight: 900;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
}
#profilesection .profile {
  display: inline-block;
  text-align: center;
  position: relative;
}
#profilesection .profile img {
  display: inline-block;
  text-align: center;
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--nl-line-strong);
  box-shadow: 0 0 18px rgba(212,160,23,.18);
  transition: border-color .18s ease, box-shadow .18s ease;
}
#profilesection:hover .profile img {
  border-color: var(--nl-gold);
  box-shadow: 0 0 24px rgba(212,160,23,.32);
}
#profilesection .profile::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 14px;
  height: 14px;
  background: var(--nl-forest);
  border: 3px solid var(--nl-bg-deep);
  border-radius: 50%;
  z-index: 11;
}
