  /* ====== 弹窗遮罩 ====== */
.gold-pop-mask{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.65);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

/* ====== 弹窗主体（整体更高） ====== */
.gold-pop-box{
  width:100%;
  max-width:360px;
  /* 关键：整体高度更高，像APP弹窗 */
  min-height:520px;
  max-height:82vh;
  display:flex;
  flex-direction:column;

  background:linear-gradient(180deg,#0b0b0b,#151515);
  border-radius:18px;
  padding:22px 18px 18px;
  position:relative;
  box-shadow:
    0 0 0 1px rgba(255,215,160,.25),
    0 20px 48px rgba(0,0,0,.88);
  animation:popIn .22s ease both;
  overflow:hidden;
}

/* 顶部光晕 */
.gold-glow{
  position:absolute;
  inset:-90px -60px auto -60px;
  height:260px;
  background:radial-gradient(circle at 50% 30%, rgba(245,210,138,.38), transparent 68%);
  pointer-events:none;
}

/* 关闭按钮 */
.gold-close{
  position:absolute;
  top:12px;
  right:12px;
  width:32px;
  height:32px;
  border-radius:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,215,160,.12);
  color:#ccc;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}

/* ====== LOGO ====== */
.gold-logo{
  width:87px;
  border-radius:18px;
  margin:2px auto 10px;
  /*background:*/
  /*  radial-gradient(circle at 35% 35%, #ffd08a 0%, #c8923a 45%, #111 80%);*/
  box-shadow:
    0 0 0 1px rgba(255,215,160,.22),
    0 14px 26px rgba(0,0,0,.65);
  position:relative;
  z-index:1;
}
.gold-logo img{
    width: 100%;
}

/* 标题 */
.gold-title{
  text-align:center;
  font-size:18px;
  font-weight:800;
  color:#f5d28a;
  letter-spacing:1px;
  position:relative;
  z-index:1;
}
.gold-sub{
  text-align:center;
  font-size:12px;
  margin-top:6px;
  color:rgba(255,255,255,.6);
  position:relative;
  z-index:1;
}

/* 分割线 */
.gold-divider{
  height:1px;
  margin:16px 0 12px;
  background:linear-gradient(90deg,transparent,#f5d28a,transparent);
  position:relative;
  z-index:1;
  opacity:.95;
}

/* ====== 可滚动内容区（高度更大） ====== */
.gold-content{
  /* 关键：占据弹窗中间剩余空间，让整体显得更“高” */
  flex:1;
  min-height:220px;
  overflow-y:auto;
  padding:0 6px;
  font-size:14px;
  line-height:1.8;
  color:#d6d6d6;
  position:relative;
  z-index:1;
}
.gold-content::-webkit-scrollbar{width:0;}
.gold-content p{margin:9px 0;}
.gold-highlight{color:#f5d28a;font-weight:700;letter-spacing:.4px;}

/* 按钮区 */
.gold-actions{
  display:flex;
  gap:10px;
  margin-top:16px;
  position:relative;
  z-index:1;
}
.gold-btn{
  flex:1;
  height:44px;
  border-radius:22px;
  font-size:14px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  user-select:none;
}
.gold-btn.primary{
  background:linear-gradient(180deg,#f6d58b,#d7a84f);
  color:#2a1a00;
  box-shadow:0 10px 22px rgba(245,210,138,.22);
}
.gold-btn.ghost{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,215,160,.14);
  color:#eee;
}

/* 动画 */
@keyframes popIn{
  from{transform:translateY(14px) scale(.96);opacity:0;}
  to{transform:none;opacity:1;}
}