/* ═══════════════════════════════════════
   CT Dashboard — Pumpfun Social Intelligence
   Style aligned with perps.octoland.cc
   ═══════════════════════════════════════ */

:root {
  --bg: #F5F5F0;
  --card-bg: #FFFFFF;
  --border: #1A1A2E;
  --border-lite: #D1D5DB;
  --shadow: #1A1A2E;
  --shadow-offset: 3px;

  --accent-green: #059669;
  --accent-green-bg: #ECFDF5;
  --accent-green-border: #6EE7B7;
  --accent-yellow: #D97706;
  --accent-yellow-bg: #FFFBEB;
  --accent-yellow-border: #FCD34D;
  --accent-red: #DC2626;
  --accent-red-bg: #FEF2F2;
  --accent-red-border: #FCA5A5;
  --accent-blue: #2563EB;
  --accent-blue-bg: #EFF6FF;
  --accent-blue-border: #93C5FD;
  --accent-purple: #7C3AED;
  --accent-purple-bg: #F5F3FF;
  --accent-purple-border: #C4B5FD;

  --text-primary: #111827;
  --text-secondary: #374151;
  --text-muted: #6B7280;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;

  --radius: 10px;
  --radius-sm: 7px;
  --radius-xs: 5px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-base: 13px;
  --fs-md: 14px;
  --fs-lg: 18px;

  --touch-min: 44px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  background: var(--bg);
  min-height: 100vh; min-height: 100dvh;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ── Page Layout ── */
.ct-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-4) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* ═══ Header ═══ */
.ct-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow);
  padding: var(--sp-3) var(--sp-5);
}
.ct-header__left { display: flex; align-items: center; gap: var(--sp-3); }
.ct-header__back {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  text-decoration: none; transition: transform .15s ease, opacity .15s ease;
  overflow: hidden;
}
.ct-header__back:hover { transform: translateY(-1px); opacity: .92; }
.ct-header__logo { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-header__title { font-size: var(--fs-lg); font-weight: 800; letter-spacing: -0.02em; }
.ct-header__right { display: flex; align-items: center; gap: var(--sp-2); }
.ct-header__updated { font-size: var(--fs-sm); color: var(--text-muted); font-variant-numeric: tabular-nums; }
.freshness-dot {
  width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0;
}
.freshness-dot--fresh { background: var(--accent-green); }
.freshness-dot--warn  { background: var(--accent-yellow); }
.freshness-dot--stale { background: var(--accent-red); animation: pulse-badge 1s ease-in-out infinite; }
@keyframes pulse-badge { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

/* ═══ KPI Bar ═══ */
.kpi-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.kpi-bar__inner { display: flex; gap: var(--sp-3); min-width: max-content; }
.kpi-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 2px 2px 0 var(--shadow);
  padding: var(--sp-3) var(--sp-4);
  min-width: 150px; flex-shrink: 0;
}
.kpi-card__label { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.kpi-card__value { font-size: 20px; font-weight: 800; font-family: var(--mono); margin-top: 2px; }
.kpi-card__sub { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }
.kpi-pos { color: var(--accent-green); }
.kpi-neg { color: var(--accent-red); }

/* ═══ Tab Navigation ═══ */
.ct-tabs {
  display: flex; gap: var(--sp-2);
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow);
  padding: var(--sp-2);
}
.ct-tab {
  flex: 1; padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  background: transparent; cursor: pointer;
  font-family: var(--font); font-size: var(--fs-base); font-weight: 600;
  color: var(--text-muted); transition: all .15s ease;
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: var(--touch-min);
}
.ct-tab:hover { background: var(--accent-blue-bg); color: var(--accent-blue); }
.ct-tab.active {
  background: var(--accent-blue-bg);
  border-color: var(--accent-blue-border);
  color: var(--accent-blue); font-weight: 700;
}
.ct-tab__count {
  background: var(--border); color: white;
  font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 99px;
  font-family: var(--mono);
}
.ct-tab.active .ct-tab__count { background: var(--accent-blue); }

/* ═══ Filter Bar ═══ */
.ct-filters {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow);
  padding: var(--sp-3) var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center;
}
.ct-search {
  flex: 1; min-width: 200px;
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid var(--border-lite); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: var(--fs-base);
  background: var(--bg); outline: none;
  transition: border-color .15s ease;
}
.ct-search:focus { border-color: var(--accent-blue-border); background: white; }
.ct-search::placeholder { color: var(--text-muted); }

.chip-group { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 999px;
  border: 1.5px solid var(--border-lite);
  background: var(--card-bg); cursor: pointer;
  font-family: var(--font); font-size: var(--fs-xs); font-weight: 600;
  color: var(--text-secondary); transition: all .15s ease;
  white-space: nowrap;
}
.chip:hover { border-color: var(--accent-blue-border); color: var(--accent-blue); background: var(--accent-blue-bg); }
.chip.active { background: var(--accent-blue-bg); border-color: var(--accent-blue-border); color: var(--accent-blue); }
.chip__count { font-size: 10px; color: var(--text-muted); font-family: var(--mono); }

.filter-select {
  padding: var(--sp-2) var(--sp-3);
  border: 1.5px solid var(--border-lite); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: var(--fs-xs); font-weight: 600;
  background: var(--card-bg); color: var(--text-secondary);
  cursor: pointer; outline: none;
}

/* ═══ Table Card ═══ */
.ct-table-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow);
  overflow: hidden;
}
.ct-table-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1.5px solid var(--border-lite);
}
.ct-table-toolbar__title { font-size: var(--fs-md); font-weight: 700; }
.ct-table-toolbar__info { font-size: var(--fs-xs); color: var(--text-muted); font-family: var(--mono); }

.ct-table-wrap { overflow-x: auto; }
table.ct-table {
  width: 100%; border-collapse: collapse; font-size: var(--fs-sm);
}
.ct-table th {
  text-align: left; padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--text-muted);
  border-bottom: 1.5px solid var(--border-lite);
  background: var(--bg); position: sticky; top: 0; z-index: 1;
  cursor: pointer; white-space: nowrap; user-select: none;
}
.ct-table th:hover { color: var(--accent-blue); }
.ct-table th.sorted { color: var(--accent-blue); }
.ct-table th .sort-arrow { font-size: 10px; margin-left: 2px; }
.ct-table td {
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid #F3F4F6;
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
}
.ct-table tr:hover td { background: var(--accent-blue-bg); }
.ct-table tr { cursor: pointer; transition: background .1s ease; }

/* Cell helpers */
.cell-rank {
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-xs);
  color: var(--text-muted); min-width: 30px; text-align: center;
}
.cell-rank--top3 { color: var(--accent-yellow); }
.cell-entity {
  display: flex; flex-direction: column; gap: 1px;
}
.cell-entity__id {
  font-family: var(--mono); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-primary);
  max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cell-entity__url {
  font-size: var(--fs-xs); color: var(--text-muted);
  max-width: 250px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cell-score {
  font-family: var(--mono); font-weight: 700; font-size: var(--fs-sm);
}
.cell-delta {
  font-family: var(--mono); font-weight: 600; font-size: var(--fs-xs);
  display: inline-flex; align-items: center; gap: 2px;
}
.cell-delta.pos { color: var(--accent-green); }
.cell-delta.neg { color: var(--accent-red); }
.cell-delta.zero { color: var(--text-muted); }

.platform-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.platform-badge--twitter { background: #E8F5FD; color: #1DA1F2; border: 1px solid #B8E2FA; }
.platform-badge--website { background: var(--accent-purple-bg); color: var(--accent-purple); border: 1px solid var(--accent-purple-border); }
.platform-badge--telegram { background: #E8F4FD; color: #0088CC; border: 1px solid #B0DCFA; }
.platform-badge--github { background: #F6F8FA; color: #24292E; border: 1px solid #D0D7DE; }
.platform-badge--tiktok { background: #FFF0F5; color: #FE2C55; border: 1px solid #FFB8CC; }
.platform-badge--youtube { background: #FEF2F2; color: #FF0000; border: 1px solid #FCA5A5; }
.platform-badge--instagram { background: #FDF2F8; color: #E4405F; border: 1px solid #F9A8D4; }
.platform-badge--reddit { background: #FFF7ED; color: #FF4500; border: 1px solid #FDBA74; }
.platform-badge--discord { background: #EEF2FF; color: #5865F2; border: 1px solid #C7D2FE; }

/* Refs badge */
.refs-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; padding: 2px 8px;
  background: var(--accent-yellow-bg); color: var(--accent-yellow);
  border: 1px solid var(--accent-yellow-border); border-radius: 999px;
  font-size: 10px; font-weight: 700; font-family: var(--mono);
}

/* ═══ Pagination ═══ */
.ct-pagination {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-top: 1.5px solid var(--border-lite);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.ct-pagination__info { font-family: var(--mono); }
.ct-pagination__btns { display: flex; gap: var(--sp-2); }
.page-btn {
  padding: var(--sp-1) var(--sp-3);
  border: 1.5px solid var(--border-lite); border-radius: var(--radius-xs);
  background: var(--card-bg); font-family: var(--font);
  font-size: var(--fs-xs); font-weight: 600; cursor: pointer;
  transition: all .15s ease; color: var(--text-secondary);
}
.page-btn:hover:not(:disabled) { border-color: var(--accent-blue-border); color: var(--accent-blue); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }
.page-btn.active { background: var(--accent-blue); color: white; border-color: var(--accent-blue); }

/* ═══ Alert Feed ═══ */
.ct-alerts {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--shadow);
  overflow: hidden;
}
.ct-alerts__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1.5px solid var(--border-lite);
}
.ct-alerts__title { font-size: var(--fs-md); font-weight: 700; display: flex; align-items: center; gap: var(--sp-2); }
.ct-alerts__list { max-height: 400px; overflow-y: auto; }
.alert-item {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid #F3F4F6;
  transition: background .1s ease; cursor: pointer;
}
.alert-item:hover { background: var(--accent-blue-bg); }
.alert-item:last-child { border-bottom: none; }
.alert-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0;
}
.alert-dot--high { background: var(--accent-red); }
.alert-dot--medium { background: var(--accent-yellow); }
.alert-dot--warning { background: var(--accent-blue); }
.alert-dot--low { background: var(--text-muted); }
.alert-body { flex: 1; min-width: 0; }
.alert-msg { font-size: var(--fs-sm); font-weight: 500; color: var(--text-primary); }
.alert-meta {
  display: flex; gap: var(--sp-3); margin-top: 2px;
  font-size: var(--fs-xs); color: var(--text-muted);
}
.alert-type-badge {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  padding: 1px 6px; border-radius: 4px; letter-spacing: 0.04em;
}
.alert-type-badge--high_score { background: var(--accent-red-bg); color: var(--accent-red); }
.alert-type-badge--score_jump { background: var(--accent-yellow-bg); color: var(--accent-yellow); }
.alert-type-badge--high_refs { background: var(--accent-blue-bg); color: var(--accent-blue); }

/* ═══ Detail Modal ═══ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000; display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-4);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--shadow);
  width: 100%; max-width: 720px;
  max-height: 85vh; overflow-y: auto;
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } }
.modal__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1.5px solid var(--border-lite);
  position: sticky; top: 0; background: var(--card-bg); z-index: 1;
}
.modal__title { font-size: var(--fs-lg); font-weight: 800; }
.modal__close {
  width: 32px; height: 32px;
  border: 1.5px solid var(--border-lite); border-radius: var(--radius-sm);
  background: var(--card-bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all .15s ease;
}
.modal__close:hover { border-color: var(--accent-red-border); color: var(--accent-red); background: var(--accent-red-bg); }
.modal__body { padding: var(--sp-4) var(--sp-5); }

.detail-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-3); margin-bottom: var(--sp-4);
}
.detail-stat {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: var(--sp-3);
}
.detail-stat__label { font-size: var(--fs-xs); color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.detail-stat__value { font-size: var(--fs-md); font-weight: 700; font-family: var(--mono); margin-top: 2px; }

.detail-section { margin-bottom: var(--sp-5); }
.detail-section__title {
  font-size: var(--fs-sm); font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: var(--sp-3); padding-bottom: var(--sp-2);
  border-bottom: 1.5px solid var(--border-lite);
}

.token-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.token-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-2) var(--sp-3);
  background: var(--bg); border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
}
.token-item__name { font-weight: 600; font-family: var(--mono); }
.token-item__symbol { color: var(--text-muted); font-size: var(--fs-xs); }
.token-item__mint {
  font-family: var(--mono); font-size: var(--fs-xs); color: var(--text-muted);
  max-width: 120px; overflow: hidden; text-overflow: ellipsis;
}

/* ═══ Empty States ═══ */
.empty-state {
  text-align: center; padding: var(--sp-8) var(--sp-4);
  color: var(--text-muted);
}
.empty-state__icon { font-size: 48px; margin-bottom: var(--sp-3); opacity: .4; }
.empty-state__title { font-size: var(--fs-md); font-weight: 700; margin-bottom: var(--sp-2); }
.empty-state__text { font-size: var(--fs-sm); max-width: 320px; margin: 0 auto; }

/* ═══ Loading ═══ */
.loading-spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 2px solid var(--border-lite);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══ Footer ═══ */
.page-footer {
  text-align: center; padding: var(--sp-4);
  font-size: var(--fs-xs); color: var(--text-muted);
  font-family: var(--mono);
}

/* ═══ Score bar (visual) ═══ */
.score-bar {
  width: 60px; height: 6px;
  background: var(--border-lite); border-radius: 3px;
  overflow: hidden; display: inline-block; vertical-align: middle;
  margin-left: 6px;
}
.score-bar__fill { height: 100%; border-radius: 3px; transition: width .3s ease; }
.score-bar__fill--high { background: var(--accent-green); }
.score-bar__fill--med { background: var(--accent-yellow); }
.score-bar__fill--low { background: var(--accent-red); }

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .ct-page { padding: var(--sp-2); gap: var(--sp-3); }
  .ct-header { padding: var(--sp-2) var(--sp-3); }
  .ct-header__title { font-size: 15px; }
  .ct-filters { padding: var(--sp-2) var(--sp-3); }
  .ct-search { min-width: 0; flex-basis: 100%; }
  .ct-tabs { flex-wrap: wrap; }
  .ct-tab { font-size: var(--fs-xs); padding: var(--sp-2) var(--sp-2); min-height: 36px; }
  .ct-table th, .ct-table td { padding: var(--sp-1) var(--sp-2); font-size: var(--fs-xs); }
  .cell-entity__id { max-width: 120px; }
  .cell-entity__url { display: none; }
  .kpi-card { min-width: 120px; padding: var(--sp-2) var(--sp-3); }
  .kpi-card__value { font-size: 16px; }
  .modal { max-width: 100%; margin: 0; border-radius: var(--radius) var(--radius) 0 0; max-height: 90vh; }
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  .hide-mobile { display: none !important; }
}

@media (max-width: 480px) {
  .ct-table th:nth-child(n+5), .ct-table td:nth-child(n+5) { display: none; }
  .kpi-bar__inner { gap: var(--sp-2); }
  .kpi-card { min-width: 100px; }
}

/* ═══ V1 Additions: Scoring Badge, Breakdown, Market ═══ */

/* Scoring version badge */
.scoring-badge {
  display: inline-flex; align-items: center;
  padding: 2px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-family: var(--mono);
}
.scoring-badge--v1 {
  background: var(--accent-green-bg);
  color: var(--accent-green);
  border: 1.5px solid var(--accent-green-border);
}
.scoring-badge--v0 {
  background: var(--bg);
  color: var(--text-muted);
  border: 1.5px solid var(--border-lite);
}

/* Market KPI cards */
.kpi-card--market {
  border-color: var(--accent-green-border);
}
.kpi-card--market .kpi-card__label {
  color: var(--accent-green);
}

/* Market columns in table */
.cell-mkt {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Score breakdown in detail modal */
.score-breakdown {
  display: flex; flex-direction: column; gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.breakdown-row {
  display: flex; align-items: center; gap: var(--sp-3);
}
.breakdown-label {
  font-size: var(--fs-xs); font-weight: 700;
  min-width: 100px;
  color: var(--text-secondary);
}
.breakdown-bar-wrap {
  flex: 1; height: 10px;
  background: var(--border-lite);
  border-radius: 5px;
  overflow: hidden;
}
.breakdown-bar {
  height: 100%;
  border-radius: 5px;
  transition: width .4s ease;
  min-width: 2px;
}
.breakdown-bar--risk {
  opacity: 0.7;
}
.breakdown-val {
  font-size: var(--fs-xs); font-family: var(--mono);
  min-width: 90px; text-align: right;
  color: var(--text-muted);
}
.breakdown-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--sp-2);
  margin-top: var(--sp-2);
  border-top: 1.5px solid var(--border-lite);
  font-size: var(--fs-sm);
  font-family: var(--mono);
}

/* Token market data in detail */
.token-mkt {
  display: block;
  font-size: var(--fs-xs);
  color: var(--accent-green);
  font-family: var(--mono);
  margin-top: 2px;
}
.token-mkt--none {
  color: var(--text-muted);
  font-style: italic;
}

/* Alert type badge for market_activity */
.alert-type-badge--market_activity {
  background: var(--accent-green-bg);
  color: var(--accent-green);
}

/* ═══ v1.2 Scoring Additions ═══ */

/* Scoring badge v1.2 */
.scoring-badge--v12 {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  font-size: var(--fs-xs);
  font-weight: 700;
  font-family: var(--mono);
}

/* Multiplier badges */
.mult-badge {
  display: inline-block;
  padding: 1px 6px;
  border-radius: var(--radius-xs);
  font-size: var(--fs-xs);
  font-weight: 600;
  font-family: var(--mono);
  white-space: nowrap;
}
.mult--high {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}
.mult--mid {
  background: rgba(156, 163, 175, 0.15);
  color: var(--text-secondary);
}
.mult--low {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

/* Score formula display */
.score-formula {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-3);
  text-align: center;
  letter-spacing: 0.02em;
}
