/* =========================================================================
   儲值中心 · Deposit — 沿用 withdraw.css 樣式,僅覆寫成功視窗流程
   ========================================================================= */

/* Hero 右側 icon 綠青色系(儲值意象),覆寫 withdraw 的藍色暈染 */
body:has(.wd-content[data-screen-label="Deposit Center"]) .wd-hero::after {
  background: radial-gradient(closest-side, rgba(16, 185, 129, 0.24), transparent 70%);
}

/* ==========================================================================
   Success Modal — 儲值版:直接顯示 LINE 客服流程
   ========================================================================== */
.dp-modal-panel {
  max-width: 460px;
  text-align: center;
  padding: 34px 32px 28px;
}

.dp-success-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--nx-ink-600);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.dp-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

/* LINE 主要按鈕 */
.dp-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(180deg, #06C755 0%, #05B24C 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 8px 20px -6px rgba(6, 199, 85, 0.5);
  border: 0;
  font-family: inherit;
}
.dp-line-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #05B24C 0%, #049E44 100%);
  box-shadow: 0 12px 26px -6px rgba(6, 199, 85, 0.58);
}
.dp-line-btn:active { transform: translateY(0); }
.dp-line-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.dp-back-btn {
  padding: 12px 22px;
  min-width: 0;
}

/* ==========================================================================
   Header 對齊 — Dashboard 通用回饋(避免留下 sub 副標空隙)
   ========================================================================== */
.dash-top .top-crumb .cur:only-of-type {
  /* no-op:僅用來保留良好 baseline */
}

@media (max-width: 640px) {
  .dp-modal-panel { padding: 28px 22px 24px; }
  .dp-success-desc { font-size: 13.5px; }
}
