.profile-card h1 {
  margin: 9px 0 0;
  font-family: "Sora", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(27px, 6.7vw, 36px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
  background: linear-gradient(90deg, #d91d2b 0%, #b91522 45%, #330407 69%, #030303 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 22px rgba(180, 0, 20, 0.16));
}

.profile-icon-bubble {
  margin-top: 9px;
  min-width: 126px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15,15,18,0.78), rgba(2,2,4,0.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 40px rgba(0,0,0,0.56), 0 0 34px rgba(255, 30, 50, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: badgePop 0.8s ease both;
}

.profile-icon-img {
  width: 25px;
  height: 25px;
  display: block;
  object-fit: contain;
  animation: badgePop 0.8s ease both;
}

.profile-icon-img:nth-child(2) { animation-delay: 0.08s; }
.profile-icon-img:nth-child(3) { animation-delay: 0.14s; }

.witch-icon { transform: rotate(-9deg) scale(1.06); filter: drop-shadow(0 0 11px rgba(190, 128, 255, 0.52)); }
.wand-icon { transform: rotate(8deg) scale(1.04); filter: drop-shadow(0 0 11px rgba(255, 230, 130, 0.5)); }
.potion-icon { transform: rotate(-4deg) scale(1.04); filter: drop-shadow(0 0 11px rgba(255, 110, 200, 0.45)); }

@media (max-width: 460px) {
  .profile-card h1 { margin-top: 8px; font-size: clamp(27px, 7.4vw, 34px); }
  .profile-icon-bubble { height: 36px; min-width: 116px; gap: 10px; padding: 7px 14px; margin-top: 8px; }
  .profile-icon-img { width: 23px; height: 23px; }
}
