.acct-shell {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  padding: 32px;
  margin: 24px 0;
}
.acct-shell h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
}
.acct-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.acct-card {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  padding: 24px;
}
.acct-card .label {
  color: var(--soft); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
}
.acct-card .balance {
  font-family: var(--serif);
  font-size: 44px; font-weight: 500; line-height: 1;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
.acct-card p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.acct-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.acct-row:first-of-type { border-top: 0; }
.acct-row span { color: var(--muted); }

@media (max-width: 720px) { .acct-cards { grid-template-columns: 1fr; } }

/* 订单 / 流水列表 */
.acct-card-full { width: 100%; }
.acct-list {
  display: grid;
  gap: 0;
  max-height: 480px;
  overflow-y: auto;
}
.acct-list-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.acct-list-row:first-child { border-top: 0; }
.acct-list-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.acct-list-main strong { font-weight: 600; }
.acct-list-meta {
  color: var(--soft);
  font-size: 11.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.acct-list-amount {
  text-align: right;
  display: grid;
  gap: 3px;
  white-space: nowrap;
}
.acct-list-amount strong {
  font-feature-settings: "tnum";
  font-size: 14px;
}
.acct-list-tag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.acct-list-tag-paid, .acct-list-tag-succeeded { background: rgba(21, 128, 61, 0.1); color: #15803d; }
.acct-list-tag-pending { background: rgba(217, 119, 6, 0.1); color: #a16207; }
.acct-list-tag-failed, .acct-list-tag-cancelled { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.acct-list-tag-refunded { background: var(--bg-tan, #f5f5f0); color: var(--soft); }
.acct-empty {
  padding: 14px 0 4px;
  color: var(--soft);
  font-size: 13px;
}
