/* VibeCraft Admin Panel — admin.css */
/* Design language: dark #0f0f0f, accent #FF6D30, Outfit font */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0f0f0f;
  --bg2:       #161616;
  --bg3:       #1c1c1c;
  --bg4:       #222222;
  --border:    #2a2a2a;
  --border2:   #333333;
  --text:      #ededed;
  --text2:     #888888;
  --text3:     #555555;
  --accent:    #FF6D30;
  --accent-lo: rgba(255, 109, 48, 0.12);
  --accent-mid:rgba(255, 109, 48, 0.25);
  --accent-hi: rgba(255, 109, 48, 0.45);
  --green:     #22c55e;
  --green-lo:  rgba(34, 197, 94, 0.12);
  --purple:    #a78bfa;
  --purple-lo: rgba(167, 139, 250, 0.12);
  --blue:      #38bdf8;
  --blue-lo:   rgba(56, 189, 248, 0.12);
  --yellow:    #fbbf24;
  --yellow-lo: rgba(251, 191, 36, 0.12);
  --red:       #f87171;
  --red-lo:    rgba(248, 113, 113, 0.12);
  --sidebar-w: 220px;
  --topbar-h:  62px;
  --radius:    10px;
  --radius-lg: 14px;
}

html, body {
  height: 100%;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: rgba(255,109,48,0.05); }
::-webkit-scrollbar-thumb { background: rgba(255,109,48,0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,109,48,0.5); }
* { scrollbar-width: thin; scrollbar-color: rgba(255,109,48,0.3) transparent; }

/* ── App layout ────────────────────────────────────────────────────────────── */
#app {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
#sidebar {
  width: var(--sidebar-w);
  min-width: var(--sidebar-w);
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px 16px;
  border-bottom: 1px solid var(--border);
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-nav {
  flex: 1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: background 0.15s, color 0.15s;
  position: relative;
  cursor: pointer;
}

.nav-item:hover {
  background: var(--bg3);
  color: var(--text);
}

.nav-item.active {
  background: var(--accent-lo);
  color: var(--accent);
  font-weight: 600;
}

.nav-item.active .nav-icon {
  opacity: 1;
}

.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-badge {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
}

.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 12px 14px;
  border-top: 1px solid var(--border);
}

.admin-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-mid);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.admin-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-email {
  font-size: 10px;
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text3);
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}

.icon-btn:hover {
  color: var(--text);
  background: var(--bg4);
}

/* ── Main ──────────────────────────────────────────────────────────────────── */
#main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

/* ── Topbar ────────────────────────────────────────────────────────────────── */
#topbar {
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  gap: 16px;
}

#page-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#page-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

#page-sub {
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  color: var(--text3);
  pointer-events: none;
}

#global-search {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  padding: 7px 12px 7px 32px;
  width: 220px;
  outline: none;
  transition: border-color 0.15s;
}

#global-search:focus {
  border-color: var(--accent-mid);
}

#global-search::placeholder { color: var(--text3); }

.topbar-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text2);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text3);
}

.status-dot.live {
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green-lo);
  animation: pulse-dot 2.4s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px var(--green-lo); }
  50%       { box-shadow: 0 0 0 4px rgba(34,197,94,0.06); }
}

/* ── Content area ──────────────────────────────────────────────────────────── */
#content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Animations ────────────────────────────────────────────────────────────── */
@keyframes fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.page-enter {
  animation: fadein 0.2s ease;
}

/* ── KPI Cards ─────────────────────────────────────────────────────────────── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kpi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.kpi-card:hover {
  border-color: var(--border2);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.kpi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kpi-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kpi-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kpi-icon svg { width: 15px; height: 15px; }

.kpi-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.kpi-delta {
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.kpi-delta.up   { color: var(--green); }
.kpi-delta.down { color: var(--red); }
.kpi-delta.neutral { color: var(--text3); }

/* ── Section headers ───────────────────────────────────────────────────────── */
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.section-hint {
  font-size: 11px;
  color: var(--text3);
  font-weight: 400;
}

.section-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: opacity 0.15s;
}

.section-link:hover { opacity: 0.75; }

/* ── Two-column grid ───────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

/* ── Card ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: border-color 0.18s;
}

.card:hover {
  border-color: var(--border2);
}

/* ── Plan distribution bar ─────────────────────────────────────────────────── */
.plan-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-bar-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.plan-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.plan-bar-pct {
  font-size: 11px;
  font-weight: 500;
  color: var(--text2);
}

.plan-bar-track {
  height: 7px;
  background: var(--bg4);
  border-radius: 10px;
  overflow: hidden;
}

.plan-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Platform list ─────────────────────────────────────────────────────────── */
.platform-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-rank {
  font-size: 10px;
  font-weight: 700;
  color: var(--text3);
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

.platform-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  width: 76px;
  flex-shrink: 0;
}

.platform-bar-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-bar-track {
  flex: 1;
  height: 5px;
  background: var(--bg4);
  border-radius: 10px;
  overflow: hidden;
}

.platform-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--accent);
  opacity: 0.6;
  transition: width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.platform-pct {
  font-size: 10px;
  font-weight: 600;
  color: var(--text2);
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

/* ── Activity feed ─────────────────────────────────────────────────────────── */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

.activity-item:last-child { border-bottom: none; }

.activity-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg4);
  color: var(--text2);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-info {
  flex: 1;
  min-width: 0;
}

.activity-line {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-meta {
  font-size: 10px;
  color: var(--text3);
  margin-top: 1px;
}

.activity-score {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.activity-time {
  font-size: 10px;
  color: var(--text3);
  flex-shrink: 0;
  text-align: right;
  min-width: 50px;
}

/* ── Badges ────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.badge-free    { background: var(--bg4); color: var(--text2); border: 1px solid var(--border2); }
.badge-boost   { background: var(--accent-lo); color: var(--accent); border: 1px solid var(--accent-mid); }
.badge-turbo   { background: var(--green-lo); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-new     { background: var(--blue-lo); color: var(--blue); border: 1px solid rgba(56,189,248,0.25); }
.badge-replied { background: var(--green-lo); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.badge-closed  { background: var(--bg4); color: var(--text3); border: 1px solid var(--border2); }

/* Platform badges */
.pbadge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

/* Level badges */
.lbadge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

/* ── Toolbar row (filters + actions) ───────────────────────────────────────── */
.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 4px;
}

.filter-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 7px;
  transition: all 0.14s;
}

.filter-btn:hover {
  background: var(--bg4);
  color: var(--text);
}

.filter-btn.active {
  background: var(--accent-lo);
  border-color: var(--accent-mid);
  color: var(--accent);
}

.toolbar-spacer { flex: 1; }

.search-input {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 7px;
  outline: none;
  width: 200px;
  transition: border-color 0.15s;
}

.search-input:focus { border-color: var(--accent-mid); }
.search-input::placeholder { color: var(--text3); }

/* ── Table ─────────────────────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

thead th {
  background: var(--bg3);
  color: var(--text3);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--bg3); }

tbody td {
  padding: 11px 14px;
  color: var(--text);
  vertical-align: middle;
}

.td-muted { color: var(--text2); }
.td-small { font-size: 11px; color: var(--text2); }

/* User cell with avatar */
.user-cell {
  display: flex;
  align-items: center;
  gap: 9px;
}

.user-cell-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.user-cell-name {
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

/* URL truncation */
.url-cell {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: var(--text2);
  font-family: 'Courier New', monospace;
}

/* ── Plan change dropdown ──────────────────────────────────────────────────── */
.actions-cell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.action-btn {
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.14s;
  white-space: nowrap;
}

.action-btn:hover {
  background: var(--bg3);
  color: var(--text);
  border-color: var(--border2);
}

.action-btn.accent {
  background: var(--accent-lo);
  border-color: var(--accent-mid);
  color: var(--accent);
}

.action-btn.accent:hover {
  background: var(--accent-mid);
}

.dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  min-width: 130px;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: fadein 0.12s ease;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  transition: background 0.1s, color 0.1s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dropdown-item:hover {
  background: var(--bg4);
  color: var(--text);
}

.dropdown-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Message rows ──────────────────────────────────────────────────────────── */
.message-row-expanded td {
  background: var(--bg3);
  padding: 14px 14px 14px 24px;
}

.message-body {
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.message-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* ── Settings ──────────────────────────────────────────────────────────────── */
.settings-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.settings-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.settings-section-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.settings-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.settings-section-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.settings-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text3);
}

.settings-value {
  font-size: 12px;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 12px;
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  word-break: break-all;
}

.copy-btn {
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text3);
  font-size: 10px;
  font-weight: 600;
  font-family: inherit;
  padding: 2px 8px;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.14s;
}

.copy-btn:hover {
  color: var(--text);
  border-color: var(--border2);
}

.settings-input {
  font-size: 12px;
  color: var(--text);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 12px;
  font-family: inherit;
  outline: none;
  width: 100%;
  transition: border-color 0.15s;
}

.settings-input:focus { border-color: var(--accent-mid); }
.settings-input::placeholder { color: var(--text3); }

.save-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.15s;
}

.save-btn:hover { opacity: 0.85; }

/* ── Empty state ───────────────────────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--text3);
  gap: 8px;
}

.empty-state svg { opacity: 0.3; }
.empty-state p { font-size: 13px; font-weight: 500; }

/* ── Responsive tweaks ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col  { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --sidebar-w: 60px; }
  .logo-text, .admin-info, .nav-item span:not(.nav-icon) { display: none; }
  .nav-item { justify-content: center; padding: 10px; }
  .nav-badge { display: none; }
  .sidebar-footer { justify-content: center; }
  .icon-btn { display: none; }
}

/* ── Toast ─────────────────────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadein 0.18s ease;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

#toast.show { opacity: 1; }
#toast.success .toast-dot { background: var(--green); }
#toast.error   .toast-dot { background: var(--red); }
#toast.info    .toast-dot { background: var(--accent); }

.toast-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Score colors ──────────────────────────────────────────────────────────── */
.score-elite   { color: #38bdf8; }
.score-pro     { color: #a78bfa; }
.score-solid   { color: #22c55e; }
.score-decent  { color: #eab308; }
.score-weak    { color: #fb923c; }
.score-amateur { color: #f87171; }
