:root {
  --bg: #0a0e13;
  --bg-2: #0d1218;
  --panel: #11171f;
  --panel-2: #161d27;
  --panel-3: #1b2330;
  --border: #1f2937;
  --border-2: #263244;
  --text: #e7eef7;
  --muted: #7a8699;
  --muted-2: #4a5566;
  --accent: #2dd4bf;
  --accent-2: #5eead4;
  --accent-ink: #052824;
  --green: #34d399;
  --red: #f87171;
  --blue: #38bdf8;
  --shadow: 0 8px 30px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(45,212,191,0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(56,189,248,0.05), transparent 60%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ---- Buttons / inputs ---- */
button {
  cursor: pointer; font: inherit;
  border: 1px solid transparent; border-radius: 10px;
  padding: 9px 14px;
  background: var(--panel-2); color: var(--text);
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.05s;
}
button:hover { background: var(--panel-3); }
button:active { transform: translateY(1px); }
button.primary {
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; border-color: transparent;
  box-shadow: 0 6px 20px rgba(45,212,191,0.18);
}
button.primary:hover { background: var(--accent-2); }
button.ghost {
  background: transparent; border: 1px solid var(--border-2); color: var(--text);
}
button.ghost:hover { border-color: var(--accent); color: var(--accent); }
button.sm { padding: 6px 12px; font-size: 0.85rem; }
button.icon-btn {
  width: 32px; height: 32px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--panel-2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--muted);
}
button.icon-btn:hover { color: var(--accent); border-color: var(--accent); }

input, select, textarea {
  font: inherit;
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 12px; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.15);
}

.error { color: var(--red); font-size: 0.85rem; min-height: 1.1em; }

/* ---- Brand ---- */
.brand-row { display: inline-flex; align-items: center; gap: 10px; }
.brand-text { font-weight: 700; font-size: 1.02rem; letter-spacing: 0.2px; }
.brand-logo {
  height: 28px; width: 28px; object-fit: contain;
  background: var(--accent); border-radius: 8px; padding: 3px; flex-shrink: 0;
}
.brand-row-lg .brand-logo { height: 40px; width: 40px; border-radius: 10px; }
.brand-row-lg .brand-text { font-size: 1.3rem; }

/* ---- Login ---- */
.login-screen {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; padding: 20px;
}
.login-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 36px 32px; width: 100%; max-width: 400px;
  text-align: center; box-shadow: var(--shadow);
}
.login-card .brand-row { margin-bottom: 6px; }
.tagline { color: var(--muted); margin: 14px 0 22px; font-size: 0.95rem; }
.login-card form { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.login-card .hint { color: var(--muted); font-size: 0.8rem; }

/* ---- App layout ---- */
.app {
  display: grid; grid-template-columns: 248px 1fr;
  min-height: 100vh;
}

/* ---- Sidebar ---- */
.sidebar {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: sticky; top: 0; height: 100vh;
}
.sidebar-top { display: flex; flex-direction: column; gap: 14px; }
.sidebar .brand-row { padding: 4px 6px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--red);
  padding: 2px 6px; align-self: flex-start;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 0 rgba(248,113,113,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(248,113,113,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(248,113,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(248,113,113,0); }
}

.tabs { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.tab {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  background: transparent; border: 1px solid transparent;
  color: var(--muted);
  padding: 10px 12px; border-radius: 10px;
  font-weight: 500; font-size: 0.93rem;
}
.tab:hover { background: var(--panel); color: var(--text); }
.tab.active {
  background: var(--panel-2); color: var(--text);
  border-color: var(--border);
}
.tab.active .tab-ico { color: var(--accent); }
.tab-ico {
  width: 20px; text-align: center; color: var(--muted); font-size: 1rem;
}

.sidebar-bottom { padding: 6px; }
.user-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--border);
  flex-wrap: wrap;
}
#current-user { flex: 1; font-weight: 600; font-size: 0.85rem; color: var(--text); min-width: 0; word-break: break-all; }

/* ---- Content ---- */
.content {
  padding: 28px 32px 40px;
  max-width: 1400px; width: 100%;
  display: flex; flex-direction: column;
}

.page-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.page-title { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.01em; }
.page-sub { color: var(--muted); font-size: 0.92rem; margin-top: 4px; max-width: 60ch; }
.page-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter { display: flex; align-items: center; gap: 8px; }
.filter label { color: var(--muted); font-size: 0.85rem; }
.filter select { width: auto; min-width: 160px; }

/* ---- Cards ---- */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

/* ---- Calendar ---- */
.calendar-card { padding: 20px 20px 24px; }
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 12px; flex-wrap: wrap;
}
.cal-nav { display: flex; align-items: center; gap: 10px; }
.cal-nav h2 { font-size: 1.15rem; font-weight: 700; }

.weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 8px; margin-bottom: 8px;
}
.weekdays span {
  text-align: left; color: var(--muted);
  font-size: 0.75rem; font-weight: 500; padding: 0 4px;
}
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
}
.cal-cell {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 92px;
  padding: 8px 10px;
  display: flex; flex-direction: column; gap: 4px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.cal-cell:hover { border-color: var(--accent); background: var(--panel); }
.cal-cell.empty {
  background: transparent; border: 1px solid transparent;
  cursor: default; opacity: 0.4;
}
.cal-cell.empty:hover { border-color: transparent; background: transparent; }
.cal-cell.today {
  background: rgba(45,212,191,0.14);
  border-color: var(--accent);
}
.cal-cell.today .day-num { color: var(--accent); font-weight: 700; }
.cal-cell .day-num {
  font-size: 0.78rem; color: var(--muted);
  align-self: flex-end; font-weight: 500;
}
.cal-cell .day-pnl { font-weight: 700; font-size: 0.95rem; }
.cal-cell .day-count { font-size: 0.7rem; color: var(--muted); margin-top: auto; }
.cal-cell .day-thumb {
  width: 100%; height: 44px; object-fit: cover;
  border-radius: 6px; background: var(--panel-2);
}
.pnl-pos { color: var(--green); }
.pnl-neg { color: var(--red); }
.day-dots { display: flex; flex-wrap: wrap; gap: 3px; }
.dot { width: 6px; height: 6px; border-radius: 50%; }

/* ---- Feed ---- */
.feed-list { display: flex; flex-direction: column; gap: 12px; }
.trade-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; gap: 14px; align-items: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.trade-card:hover { border-color: var(--accent); }
.trade-thumb {
  width: 84px; height: 84px; border-radius: 10px; object-fit: cover;
  background: var(--panel-2); flex-shrink: 0;
}
.trade-main { flex: 1; min-width: 0; }
.trade-row1 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sym { font-weight: 700; font-size: 1.05rem; }
.badge {
  font-size: 0.7rem; padding: 3px 10px; border-radius: 999px;
  background: var(--panel-2); color: var(--muted);
  border: 1px solid var(--border); font-weight: 600;
}
.badge.long { color: var(--green); border-color: rgba(52,211,153,0.3); }
.badge.short { color: var(--red); border-color: rgba(248,113,113,0.3); }
.trade-meta { color: var(--muted); font-size: 0.82rem; margin-top: 4px; }
.trade-notes {
  color: var(--text); font-size: 0.88rem; margin-top: 6px; opacity: 0.85;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.trade-pnl { font-weight: 800; font-size: 1.1rem; text-align: right; white-space: nowrap; }
.by { color: var(--accent); font-weight: 500; }

/* ---- Traders ---- */
.traders-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.trader-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px; text-align: center; cursor: pointer;
  transition: border-color 0.15s, transform 0.05s;
}
.trader-card:hover { border-color: var(--accent); transform: translateY(-1px); }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 10px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.trader-card .name { font-weight: 600; }
.trader-card .stats { color: var(--muted); font-size: 0.82rem; margin-top: 6px; }
.trader-del {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; padding: 0; line-height: 1;
  font-size: 1rem; border-radius: 50%;
  background: transparent; border: 1px solid var(--border); color: var(--muted);
}
.trader-del:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ---- Modal ---- */
.modal {
  position: fixed; inset: 0;
  background: rgba(5,8,12,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 100;
}
.modal-card {
  background: var(--panel);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 26px; width: 100%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal-card h3 { margin-bottom: 16px; font-size: 1.15rem; }
#trade-form { display: flex; flex-direction: column; gap: 12px; }
#trade-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.04em; font-weight: 500;
  text-transform: uppercase;
}
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 8px; }
.detail-img { width: 100%; border-radius: 12px; margin: 12px 0; cursor: zoom-in; }
.detail-grid { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 0.92rem; }
.detail-grid .k { color: var(--muted); }
.empty-msg { color: var(--muted); text-align: center; padding: 40px; }

/* ---- Screenshot drop / paste zone ---- */
.ss-drop {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 96px; margin-top: 4px; padding: 12px;
  text-align: center;
  background: var(--bg-2);
  border: 1px dashed var(--border-2); border-radius: 10px;
  cursor: pointer; transition: border-color 0.15s;
}
.ss-drop:hover, .ss-drop:focus { border-color: var(--accent); outline: none; }
.ss-hint { color: var(--muted); font-size: 0.85rem; text-transform: none; letter-spacing: 0; }
.ss-preview { max-width: 100%; max-height: 220px; border-radius: 8px; display: block; }
.ss-clear {
  position: absolute; top: 6px; right: 6px;
  width: 26px; height: 26px; padding: 0; line-height: 1;
  font-size: 1.1rem; border-radius: 50%;
  background: rgba(0, 0, 0, 0.6); color: #fff;
}
.ss-clear:hover { background: var(--red); }

/* ---- Admin badge ---- */
.admin-badge {
  display: inline-block; margin-left: 6px;
  padding: 1px 6px; font-size: 0.62rem;
  font-weight: 700; letter-spacing: 1px;
  border-radius: 4px;
  background: var(--accent); color: var(--accent-ink);
  vertical-align: middle;
}

/* ---- Trades stats bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px; margin-bottom: 16px;
}
.stats-bar:empty { display: none; }
.stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.stat-label { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.stat-val { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }

/* ---- Brief ---- */
.brief-wrap { display: flex; flex-direction: column; }
#brief-frame {
  width: 100%;
  height: calc(100vh - 200px);
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.brief-fallback { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }
.brief-fallback a { color: var(--accent); }

/* ---- Trading ---- */
.trading-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: stretch;
}
.trading-main { min-width: 0; }
.trading-chart-box { padding: 0; overflow: hidden; height: 100%; }
#tv-chart {
  width: 100%;
  height: calc(100vh - 210px);
  min-height: 520px;
}
.trading-side {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: calc(100vh - 210px);
  min-height: 520px;
}
.side-tabs { display: flex; border-bottom: 1px solid var(--border); }
.side-tab {
  flex: 1; background: transparent; border: none; border-radius: 0;
  padding: 12px 6px; font-size: 0.78rem; font-weight: 600; color: var(--muted);
  border-bottom: 2px solid transparent;
}
.side-tab:hover { background: var(--panel-2); color: var(--text); }
.side-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.side-panel { padding: 14px; overflow-y: auto; flex: 1; }

/* Watchlist */
.wl-add { display: flex; gap: 8px; margin-bottom: 12px; }
.wl-add input { flex: 1; }
.wl-head {
  display: grid; grid-template-columns: 1fr auto auto; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.05em; color: var(--muted-2);
  padding: 4px 4px 8px; border-bottom: 1px solid var(--border);
}
.wl-list { display: flex; flex-direction: column; }
.wl-row {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 10px;
  align-items: center; padding: 9px 4px; cursor: pointer;
  border-bottom: 1px solid var(--border); border-radius: 8px;
}
.wl-row:hover { background: var(--panel-2); }
.wl-row.active { background: var(--panel-3); }
.wl-name { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.wl-ico { opacity: 0.85; }
.wl-last { font-variant-numeric: tabular-nums; color: var(--text); }
.wl-chg { font-variant-numeric: tabular-nums; font-size: 0.85rem; color: var(--muted); }
.wl-chg.up { color: var(--green); }
.wl-chg.down { color: var(--red); }
.wl-del {
  width: 22px; height: 22px; padding: 0; background: transparent; border: none;
  color: var(--muted-2); opacity: 0; transition: opacity 0.15s;
}
.wl-row:hover .wl-del { opacity: 1; }
.wl-del:hover { color: var(--red); background: transparent; }
.wl-featured {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.wlf-head { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.wlf-name { color: var(--muted); font-weight: 500; font-size: 0.82rem; }
.wlf-price {
  font-size: 1.8rem; font-weight: 800; margin-top: 6px;
  display: flex; align-items: baseline; gap: 10px; font-variant-numeric: tabular-nums;
}
.wlf-price .wl-chg { font-size: 0.95rem; }

/* Alerts */
.al-meta { font-size: 0.82rem; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.al-meta .al-sym { color: var(--text); font-weight: 700; }
.al-meta b { color: var(--text); }
.al-test {
  margin-left: 8px; padding: 2px 8px; font-size: 0.8rem; background: var(--panel-2);
  border: 1px solid var(--border-2); border-radius: 8px;
}
.al-add { display: flex; gap: 8px; margin: 12px 0; }
.al-add input { flex: 1; min-width: 0; }
.al-add select { width: auto; }
.al-list { display: flex; flex-direction: column; gap: 6px; }
.al-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 8px; align-items: center;
  padding: 9px 10px; background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px;
  font-variant-numeric: tabular-nums;
}
.al-row.done { opacity: 0.55; }
.al-state { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.al-del { width: 22px; height: 22px; padding: 0; background: transparent; border: none; color: var(--muted-2); }
.al-del:hover { color: var(--red); background: transparent; }
.al-note { margin-top: 16px; font-size: 0.78rem; line-height: 1.5; color: var(--muted-2); }

/* Trading plan */
.tp-label {
  display: block; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--muted);
  margin: 16px 0 6px; font-weight: 700;
}
.tp-label:first-child { margin-top: 0; }
.tp-sub { color: var(--muted-2); font-weight: 500; }
#panel-plan input, #panel-plan textarea { width: 100%; }
.tp-rules { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.tp-rule {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px; font-size: 0.9rem;
}
.tp-rule span { flex: 1; }
.tp-rule input[type="checkbox"] { width: auto; accent-color: var(--accent); }
.tp-rule-del { width: 20px; height: 20px; padding: 0; background: transparent; border: none; color: var(--muted-2); }
.tp-rule-del:hover { color: var(--red); background: transparent; }
.tp-rule-add { display: flex; gap: 8px; }
.tp-rule-add input { flex: 1; }
.tp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.tp-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3);
  color: var(--red); border-radius: 999px; font-size: 0.82rem;
}
.tp-tag button { padding: 0; width: 16px; height: 16px; background: transparent; border: none; color: var(--red); }
.tp-saved { color: var(--green); min-height: 1em; margin-top: 6px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--panel-3); border: 1px solid var(--accent); color: var(--text);
  padding: 12px 20px; border-radius: 12px; box-shadow: var(--shadow);
  font-weight: 600; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.25s; z-index: 9999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .trading-layout { grid-template-columns: 1fr; }
  .trading-side { height: auto; min-height: 0; }
  #tv-chart { height: 60vh; }
}

/* ---- Account growth chart ---- */
.growth-wrap { margin-top: 24px; }
.growth-title { margin-bottom: 12px; color: var(--text); font-size: 1rem; font-weight: 600; }
.growth-canvas-box {
  position: relative;
  height: 300px;
  padding: 14px;
}

/* ---- Account tab ---- */
.account-card {
  max-width: 460px;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 16px;
}
.account-card h3 { font-size: 1rem; font-weight: 600; }
.account-card label { display: flex; flex-direction: column; gap: 6px; color: var(--muted); font-size: 0.85rem; }
.account-card button { align-self: flex-start; }

/* ---- Trade form rows ---- */
.form-row { display: flex; gap: 10px; }
.form-row label { flex: 1; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 200;
}
.lightbox img {
  max-width: 95vw; max-height: 95vh; object-fit: contain;
  border-radius: 10px; cursor: zoom-in;
  transition: transform 0.08s ease-out;
}
.lightbox img.zoomed { cursor: zoom-out; }

/* ---- Footer ---- */
.app-footer {
  text-align: center; color: var(--muted);
  font-size: 0.78rem;
  padding: 24px 16px 0;
  margin-top: auto;
}

/* ---- Data ---- */
.data-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.data-actions select { width: auto; min-width: 160px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .content { padding: 24px; }
}
@media (max-width: 768px) {
  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: static; height: auto;
    flex-direction: column; align-items: stretch;
    padding: 12px 14px;
    border-right: none; border-bottom: 1px solid var(--border);
  }
  .tabs { flex-direction: row; overflow-x: auto; margin-top: 8px; }
  .tab { flex-shrink: 0; }
  .tab .tab-label { display: none; }
  .live-pill { display: none; }
  .content { padding: 18px; }
  .cal-cell { min-height: 64px; padding: 6px; }
  .trade-thumb { width: 60px; height: 60px; }
  .page-title { font-size: 1.35rem; }
}
