/* =========================================
   PROFILE BANNER
   ========================================= */
#profileBanner {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin: 0;
}
#profileBanner.show { display: flex; }

.prof-banner-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
}

.prof-banner-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(165deg, var(--primary), #F57C00);
  color: #fff;
  border-radius: 28px;
  padding: 34px 22px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  text-align: center;
  animation: profPop .35s cubic-bezier(.22,1,.36,1);
  max-height: 88vh;
  overflow-y: auto;
}
@keyframes profPop {
  from { transform: translateY(30px) scale(.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.prof-emoji { font-size: 58px; margin-bottom: 8px; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.prof-banner-title { font-size: 21px; font-weight: 800; letter-spacing: .3px; margin-bottom: 10px; color: #fff; }
.prof-banner-sub { font-size: 13.5px; color: rgba(255,255,255,.94); line-height: 1.65; margin-bottom: 16px; }
.prof-banner-points {
  background: rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  text-align: left;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prof-banner-points div { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.97); }
.prof-banner-points span:first-child { font-size: 17px; }
.prof-banner-cta {
  width: 100%;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 16px;
  padding: 15px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  transition: transform .12s;
}
.prof-banner-cta:active { transform: scale(.97); }
.prof-banner-later {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  cursor: pointer;
  margin-top: 12px;
  text-decoration: underline;
  padding: 4px;
  width: 100%;
}
.prof-banner-close {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(255,255,255,.3);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px; height: 30px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.prof-banner-close:hover { background: rgba(255,255,255,.45); }
