:root {
  color-scheme: dark;
  --canvas: #070707;
  --surface: #101010;
  --surface-2: #171717;
  --surface-3: #202020;
  --gold: #d8b25c;
  --gold-light: #f2d98d;
  --gold-dark: #9b742e;
  --text: #f3eee2;
  --muted: #9c978d;
  --line: rgba(216,178,92,.18);
  --gain: #ff746b;
  --loss: #5ad2a9;
  --shadow: 0 22px 60px rgba(0,0,0,.45);
  --font-ui: "PingFang TC", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-display: "Songti TC", "Noto Serif TC", "Times New Roman", serif;
  --font-number: "SF Pro Display", "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-ui);
}

* { box-sizing: border-box; }
html { background: var(--canvas); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(216,178,92,.13), transparent 32%),
    linear-gradient(180deg, #0b0b0b, #050505 70%);
}
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin: 0; }

.app-shell { width: min(100%, 760px); min-height: 100vh; margin: 0 auto; padding-bottom: 118px; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(32px, env(safe-area-inset-top)) 20px 20px;
}
.topbar-actions { display: flex; gap: 8px; }
.eyebrow { margin-bottom: 5px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: 2.5px; }
h1 { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: .7px; }
.brand-me {
  display: inline-block;
  margin-right: 7px;
  padding: 0;
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: .78em;
  font-weight: 800;
  line-height: 1;
  vertical-align: 2px;
}
.icon-button {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, #1d1d1d, #0c0c0c);
  color: var(--gold-light);
  font-size: 19px;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.settings-button { font-size: 18px; }
.icon-button.plain { border: 0; background: transparent; box-shadow: none; color: var(--gold-light); font-size: 28px; }

.view { display: none; }
.view.active { display: block; }
.summary-card {
  position: relative;
  min-height: 278px;
  margin: 0 14px 28px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(216,178,92,.35);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 35%),
    linear-gradient(145deg, #1b1a17, #090909);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 24px 50px rgba(0,0,0,.48);
}
.summary-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(216,178,92,.08) 50%, transparent 73%);
  content: "";
}
.summary-card::after {
  position: absolute;
  right: -72px;
  top: -82px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(216,178,92,.14);
  border-radius: 50%;
  content: "";
}
.summary-heading { position: relative; z-index: 2; display: flex; justify-content: space-between; }
.summary-heading span, .summary-grid span { display: block; color: #bdb5a5; font-size: 14px; }
.summary-heading strong {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: clamp(34px, 10vw, 46px);
  letter-spacing: -.7px;
  text-shadow: 0 2px 20px rgba(216,178,92,.16);
}
.return-summary { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; }
.summary-heading .badge {
  margin-right: 2px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(216,178,92,.07);
  color: var(--gold-light);
  font-family: var(--font-number);
  font-size: 17px;
  font-weight: 800;
}
.return-summary small { margin: 7px 2px 0 0; color: #817b71; font-size: 9px; letter-spacing: .2px; }
.summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 12px;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.summary-grid > div, .summary-metric { min-width: 0; }
.summary-grid strong { display: block; margin-top: 7px; color: var(--text); font-family: var(--font-number); font-size: 20px; font-weight: 750; }
.summary-metric { padding: 0; border: 0; background: transparent; color: inherit; text-align: left; }
.summary-metric small { display: block; margin-top: 5px; color: var(--gold); font-size: 9px; }
.dividend-metric { position: relative; }
.dividend-metric::after { position: absolute; right: 0; top: 2px; color: var(--gold-dark); font-size: 13px; content: "›"; }

.section-title { display: flex; align-items: center; justify-content: space-between; padding: 0 19px 12px; }
.section-title > div { display: flex; align-items: center; gap: 9px; }
.section-title h2 { font-family: var(--font-display); font-size: 20px; }
.section-title small { color: var(--muted); font-family: sans-serif; font-size: 12px; font-weight: 500; }
.title-mark { width: 3px; height: 20px; border-radius: 2px; background: linear-gradient(#f3d98b, #997026); }
.text-button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(216,178,92,.07);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}
.text-button:disabled { opacity: .45; cursor: wait; }
.quote-status { margin: -3px 20px 13px; color: var(--muted); font-size: 10px; }
.quote-status.success { color: var(--loss); }
.quote-status.warning { color: var(--gold); }
.quote-status.error { color: var(--gain); }

.stock-list { padding: 0 14px; }
.stock-row {
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 15px;
  background: linear-gradient(145deg, #151515, #0d0d0d);
  box-shadow: 0 8px 24px rgba(0,0,0,.23);
}
.stock-open-button { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: inherit; }
.stock-main {
  display: grid;
  grid-template-columns: minmax(100px, 1.3fr) .8fr .8fr 1fr;
  align-items: center;
  gap: 7px;
  padding: 15px 14px 12px;
}
.stock-name { min-width: 0; }
.stock-name strong { display: block; overflow: hidden; color: var(--text); text-overflow: ellipsis; white-space: nowrap; }
.stock-name > span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; }
.stock-price, .stock-average, .stock-profit { min-width: 0; text-align: right; }
.stock-price span, .stock-average span, .stock-profit > span { display: block; margin-bottom: 5px; color: #777269; font-size: 9px; }
.stock-price strong, .stock-average strong, .stock-profit strong { display: block; overflow: hidden; font-size: 13px; text-overflow: ellipsis; }
.stock-price small, .stock-average small, .stock-profit small { display: block; margin-top: 3px; color: #817b71; font-size: 9px; }
.positive { color: var(--gain) !important; }
.negative { color: var(--loss) !important; }
.stock-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-top: 1px solid rgba(255,255,255,.045);
  color: #69655e;
  font-size: 9px;
}
.account-chip {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(216,178,92,.06);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}
.market-chip {
  display: inline-block;
  margin-left: 3px;
  padding: 2px 4px;
  border-radius: 4px;
  background: #262626;
  color: #aaa49a;
  font-size: 8px;
  font-weight: 700;
}

.empty-state {
  margin: 22px 14px;
  padding: 38px 24px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.018);
  text-align: center;
}
.empty-state[hidden] { display: none; }
.empty-state.compact { padding: 30px 20px; }
.empty-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 14px; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 25px; }
.empty-state h3 { margin-bottom: 7px; font-family: var(--font-display); }
.empty-state p, .form-hint { color: var(--muted); line-height: 1.6; }
.empty-state .primary-button { margin-top: 19px; }
.primary-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #e3c978;
  border-radius: 12px;
  background: linear-gradient(145deg, #e2c36f, #a77829);
  color: #171108;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 10px 22px rgba(0,0,0,.28);
}
.primary-button:active { transform: translateY(1px); }
.primary-button.full { width: 100%; min-height: 53px; margin-top: 13px; }

.page-heading { padding: max(32px, env(safe-area-inset-top)) 20px 20px; }
.page-heading h2 { font-family: var(--font-display); font-size: 28px; }
.record-list { padding: 0 14px; }
.date-group { margin-bottom: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: var(--surface); }
.date-heading { display: flex; justify-content: space-between; padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--gold); font-size: 11px; }
.record-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 14px; border-bottom: 1px solid rgba(255,255,255,.05); }
.record-row { cursor: pointer; }
.record-row:last-child { border-bottom: 0; }
.record-row p { margin: 5px 0 7px; color: var(--muted); font-size: 11px; }
.record-amount { text-align: right; font-weight: 750; }
.record-actions { display: flex; justify-content: flex-end; gap: 5px; margin-top: 7px; }
.record-actions button { padding: 3px 6px; border: 0; background: transparent; color: var(--muted); font-size: 10px; }
.record-actions button:last-child { color: var(--gain); }

.bottom-nav {
  position: fixed;
  z-index: 10;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
  width: min(calc(100% - 26px), 620px);
  padding: 8px 17px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(14,14,14,.93);
  box-shadow: 0 15px 40px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}
.nav-button { display: flex; flex-direction: column; align-items: center; gap: 3px; border: 0; background: transparent; color: #77726a; font-size: 10px; }
.nav-button.active { color: var(--gold-light); font-weight: 750; }
.nav-icon { font-size: 19px; line-height: 1; }
.add-button {
  width: 56px;
  height: 56px;
  margin: -24px auto 0;
  border: 5px solid var(--canvas);
  border-radius: 50%;
  background: linear-gradient(145deg, #f0d583, #9a6e25);
  color: #181109;
  font-size: 29px;
  font-weight: 500;
  box-shadow: 0 11px 27px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.55);
}

dialog {
  width: min(100% - 22px, 560px);
  max-height: calc(100vh - 24px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #111;
  color: var(--text);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(6px); }
dialog form, .settings-panel { padding: 16px 19px 22px; overflow-y: auto; }
.dialog-header { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; margin-bottom: 14px; text-align: center; }
.dialog-header h2 { color: var(--gold-light); font-family: var(--font-display); font-size: 20px; }
dialog form > label { display: grid; grid-template-columns: 112px 1fr; align-items: center; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.06); }
dialog label > span, legend { color: #aaa49a; }
input, textarea, select { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); }
input::placeholder, textarea::placeholder { color: #57534d; }
select { min-height: 44px; }
textarea { padding-top: 16px; resize: vertical; }
.stock-search-wrap { position: relative; }
.stock-search-wrap > input { padding: 11px; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; background: #181818; }
.stock-search-results {
  position: absolute;
  z-index: 30;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #181818;
  box-shadow: 0 16px 35px rgba(0,0,0,.55);
}
.stock-search-results button {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: transparent;
  color: var(--text);
  text-align: left;
}
.stock-search-results button:last-child { border-bottom: 0; }
.stock-search-results button strong { color: var(--gold-light); }
.stock-search-results button span { overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.search-message { padding: 14px; color: var(--muted); font-size: 12px; text-align: center; }
fieldset { margin: 18px 0 10px; padding: 0; border: 0; }
legend { margin-bottom: 10px; }
.segment-control { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.segment-control label { display: block; min-height: auto; border: 0; }
.segment-control input { position: absolute; opacity: 0; pointer-events: none; }
.segment-control span { display: block; padding: 11px 8px; border: 1px solid rgba(255,255,255,.06); border-radius: 9px; background: #191919; color: #8f8980; text-align: center; }
.segment-control input:checked + span { border-color: var(--gold-dark); background: rgba(216,178,92,.12); color: var(--gold-light); font-weight: 750; }
.form-total { display: flex; justify-content: space-between; margin: 18px 0 4px; padding: 17px; border: 1px solid var(--line); border-radius: 12px; background: rgba(216,178,92,.06); }
.form-total strong { color: var(--gold-light); }
.form-hint { margin: 0 3px 12px; font-size: 11px; }
.quote-row input { text-align: right; }
.secondary-button, .danger-button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 11px;
  background: transparent;
  font-weight: 700;
}
.secondary-button { border: 1px solid var(--gold-dark); color: var(--gold-light); }
.danger-button { border: 1px solid rgba(255,116,107,.35); color: var(--gain); }
.secondary-button.full, .danger-button.full { width: 100%; margin-top: 10px; }

.settings-group { margin-bottom: 13px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 15px; background: #161616; }
.settings-row {
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 70px;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: transparent;
  color: var(--text);
  text-align: left;
}
.settings-row:last-child { border-bottom: 0; }
.settings-row-icon { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; color: var(--gold); }
.settings-row strong, .settings-row small { display: block; }
.settings-row small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.settings-row b { color: var(--gold); font-size: 21px; font-weight: 400; }
.profit-options { display: grid; gap: 10px; }
.profit-options label { display: block; min-height: auto; border: 0; }
.profit-options input { position: absolute; opacity: 0; }
.profit-options span { display: block; padding: 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: #181818; }
.profit-options strong, .profit-options small { display: block; }
.profit-options small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.profit-options input:checked + span { border-color: var(--gold); background: rgba(216,178,92,.1); color: var(--gold-light); }
.accounts-list { margin: 8px 0 16px; }
.account-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.06); }
.account-row strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.account-action { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; background: rgba(216,178,92,.06); color: var(--gold); font-size: 10px; }
.account-action.danger { color: var(--gain); }
.account-action:disabled { color: #555; opacity: .6; cursor: default; }
.account-create { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: #171717; }
.sync-actions > label { display: grid; grid-template-columns: 105px 1fr; align-items: center; min-height: 56px; border-bottom: 1px solid rgba(255,255,255,.06); }
.sync-divider { display: flex; align-items: center; gap: 10px; margin: 15px 0 5px; color: var(--muted); font-size: 11px; }
.sync-divider::before, .sync-divider::after { flex: 1; height: 1px; background: rgba(255,255,255,.07); content: ""; }
.sync-code-card { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(216,178,92,.06); text-align: center; }
.sync-code-card span, .sync-code-card small { display: block; color: var(--muted); }
.sync-code-card strong { display: block; margin: 10px 0; color: var(--gold-light); font-family: monospace; font-size: 25px; letter-spacing: 2px; }
.sync-code-card small { font-size: 10px; }
.sync-message { min-height: 20px; margin-top: 12px; color: var(--muted); font-size: 11px; text-align: center; }
.sync-message.success { color: var(--loss); }
.sync-message.error { color: var(--gain); }

.detail-dialog { width: min(100% - 14px, 620px); max-height: calc(100vh - 14px); }
.detail-dialog[open] { animation: detail-in .18s ease-out; }
@keyframes detail-in { from { opacity: 0; transform: translateY(12px); } }
.detail-panel { min-height: min(760px, calc(100vh - 28px)); padding: 15px 17px 24px; overflow-y: auto; }
.detail-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 13px;
  text-align: center;
}
.detail-header span { display: block; color: var(--gold); font-size: 9px; letter-spacing: 1px; }
.detail-header h2 { margin-top: 3px; font-family: var(--font-display); font-size: 20px; }
.detail-add-button { width: 38px; height: 38px; border: 1px solid var(--gold-dark); border-radius: 50%; background: rgba(216,178,92,.08); color: var(--gold-light); font-size: 24px; }
.detail-quote-line { display: flex; align-items: baseline; justify-content: space-between; padding: 12px 4px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-quote-line strong { color: var(--gold-light); font-size: 23px; }
.detail-quote-line span { color: var(--muted); font-size: 10px; }
.detail-summary { margin-top: 14px; padding: 19px; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: #161616; }
.detail-profit span, .detail-profit small { display: block; color: var(--muted); }
.detail-profit strong { display: block; margin: 8px 0 4px; font-family: var(--font-number); font-size: 32px; }
.detail-profit small { font-size: 10px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; margin-top: 20px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.06); }
.detail-grid span, .detail-grid strong { display: block; }
.detail-grid span { color: var(--muted); font-size: 10px; }
.detail-grid strong { margin-top: 5px; font-size: 14px; }
.detail-section-heading { display: flex; justify-content: space-between; margin: 22px 2px 10px; }
.detail-section-heading h3 { font-size: 16px; }
.detail-section-heading span { color: var(--muted); font-size: 11px; }
.detail-transaction-list { overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; background: #141414; }
.detail-transaction-list button { display: grid; grid-template-columns: 1fr 1fr 16px; align-items: center; width: 100%; padding: 14px; border: 0; border-bottom: 1px solid rgba(255,255,255,.055); background: transparent; color: var(--text); text-align: left; }
.detail-transaction-list button:last-child { border-bottom: 0; }
.detail-transaction-list button span:nth-child(2) { text-align: right; }
.detail-transaction-list strong, .detail-transaction-list small { display: block; }
.detail-transaction-list small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.detail-transaction-list b { color: var(--gold); text-align: right; }
.compact-detail .detail-panel { min-height: auto; }
.transaction-detail-content { margin-top: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; background: #151515; }
.transaction-detail-content > div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.055); }
.transaction-detail-content > div:last-child { border-bottom: 0; }
.transaction-detail-content span { color: var(--muted); }
.transaction-detail-content strong { text-align: right; word-break: break-word; }
.detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.mini-refresh-button { padding: 7px 8px; border: 1px solid var(--line); border-radius: 8px; background: rgba(216,178,92,.06); color: var(--gold-light); font-size: 10px; }
.dividend-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 5px 0 14px; }
.dividend-overview > div { padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(216,178,92,.055); }
.dividend-overview span, .dividend-overview strong { display: block; }
.dividend-overview span { color: var(--muted); font-size: 10px; }
.dividend-overview strong { margin-top: 7px; color: var(--gold-light); font-family: var(--font-number); font-size: 20px; }
.dividend-note { margin-bottom: 14px; }
.dividend-forecast-list { overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; background: #141414; }
.dividend-forecast-list:empty { display: none; }
.dividend-forecast-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; padding: 15px; border-bottom: 1px solid rgba(255,255,255,.055); }
.dividend-forecast-row:last-child { border-bottom: 0; }
.dividend-forecast-row strong, .dividend-forecast-row span, .dividend-forecast-row small { display: block; }
.dividend-forecast-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dividend-forecast-row span, .dividend-forecast-row small { margin-top: 4px; color: var(--muted); font-size: 10px; }
.dividend-forecast-amount { text-align: right; }
.dividend-forecast-amount strong { color: var(--gold-light); font-family: var(--font-number); }

@media (max-width: 390px) {
  .stock-main { grid-template-columns: minmax(88px, 1.2fr) .75fr .75fr .95fr; gap: 5px; padding-inline: 11px; }
  .stock-price strong, .stock-average strong, .stock-profit strong { font-size: 11px; }
  .stock-name strong { font-size: 13px; }
}

@media (min-width: 681px) {
  body { padding: 24px 0; }
  .app-shell { min-height: calc(100vh - 48px); border: 1px solid rgba(216,178,92,.09); border-radius: 28px; background: rgba(8,8,8,.84); box-shadow: var(--shadow); }
}
