/* 隐藏登录/注册页金色方块里的原始 Gift 图标 SVG */
.bg-gold-gradient svg {
  display: none !important;
}
/* 仅当方块内没有 img 标签时（旧版dist），用 ::after 显示 Logo
   新版已内置 <img> 标签时此规则自动跳过，不产生重复图标 */
.bg-gold-gradient:not(:has(img))::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url('/pdd_logo_v2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0.75rem;
}