#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: 42px;
  width: 42px;
  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: 11px;
  height: 11px;
  background: var(--nl-forest);
  border: 2px solid var(--nl-bg-deep);
  border-radius: 50%;
  z-index: 11;
}


/* Linda 2026-05-04: align profile card content with username/actions on the homepage side column. */
.neody-side-column #profilesection {
  margin-top: 0 !important;
}
.neody-side-column #profilesection .d-flex.justify-content-between.px-5 {
  align-items: center;
  padding: 10px 18px 16px !important;
  gap: 14px;
  transform: translateY(-5px);
}
.neody-side-column #profilesection a.d-flex {
  align-items: center;
  min-width: 0;
}
.neody-side-column #profilesection .profile {
  flex: 0 0 auto;
  transform: translateY(-1px);
}
.neody-side-column #profilesection .profile + div {
  justify-content: center;
  min-width: 0;
  line-height: 1.15;
}
.neody-side-column #profilesection .btn {
  align-self: center;
  margin-top: 0;
}


/* Linda 2026-05-04b: compact homepage profile card; previous avatar was visually too dominant. */
.neody-side-column #profilesection .profile img {
  width: 42px !important;
  height: 42px !important;
}
.neody-side-column #profilesection .text {
  font-size: 0.98rem;
}
.neody-side-column #profilesection .rank {
  font-size: 0.78rem;
}
