:root {
  --bg-main: #080c14;
  --bg-card: #101622;
  --bg-card-hover: #161e2e;
  --bg-subcard: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(56, 189, 248, 0.4);
  
  --bybit-blue: #38bdf8;
  --bybit-blue-glow: rgba(56, 189, 248, 0.25);
  --bybit-orange: #f97316;
  --win-green: #10b981;
  --loss-red: #ef4444;
  --cyan-sky: #38bdf8;
  --purple-lab: #c084fc;
  --gold-accent: #facc15;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  padding: 1.25rem 1rem;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
}

.app-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ==========================================================================
   HEADER & BRANDING
   ========================================================================== */
.app-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
  .app-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.brand-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--bybit-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  width: fit-content;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--win-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--win-green);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.brand-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.highlight-bybit {
  color: var(--bybit-blue);
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.brand-subtitle strong {
  color: var(--bybit-blue);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-main);
  background: var(--bg-subcard);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}

.btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
}

.btn-outline {
  border-color: var(--border-color);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline-cyan {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
}

.btn-outline-green {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
}

.btn-outline-purple {
  border-color: rgba(192, 132, 252, 0.4);
  background: rgba(192, 132, 252, 0.1);
  color: #d8b4fe;
}

.btn-outline-orange {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.1);
  color: #fdba74;
}

.btn-gold {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
  border-color: rgba(250, 204, 21, 0.4);
  color: #fde047;
}

.btn-primary {
  background: var(--bybit-blue);
  color: #080c14;
  font-weight: 700;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color);
  color: var(--text-muted);
}

.btn-success {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}

.btn-success:hover {
  background: rgba(16, 185, 129, 0.3);
}

/* Dropdown Menu */
.dropdown-export {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #141c2c;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 190px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 50;
  overflow: hidden;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background 0.15s ease;
}

.dropdown-menu a:hover {
  background: rgba(56, 189, 248, 0.15);
  color: var(--bybit-blue);
}

/* ==========================================================================
   GLOBAL FILTER SECTION
   ========================================================================== */
.filter-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
}

@media (min-width: 900px) {
  .filter-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.date-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.filter-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.filter-presets {
  display: flex;
  gap: 0.35rem;
}

.preset-btn {
  background: var(--bg-subcard);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.preset-btn:hover {
  border-color: rgba(56, 189, 248, 0.3);
  color: #fff;
}

.preset-btn.active {
  background: var(--bybit-blue);
  border-color: var(--bybit-blue);
  color: #080c14;
  font-weight: 700;
}

.custom-date-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.date-input {
  background: #0d121c;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  font-size: 0.78rem;
  outline: none;
}

.date-input:focus {
  border-color: var(--bybit-blue);
}

.date-sep {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.quick-status-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.status-online {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  border: 1px solid var(--border-color);
}

.btn-refresh-icon {
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.btn-refresh-icon:hover {
  transform: rotate(180deg);
}

/* ==========================================================================
   HERO METRICS GRID (4 CARDS)
   ========================================================================== */
.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .hero-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.badge-blue {
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.badge-cyan {
  background: rgba(34, 211, 238, 0.15);
  color: #67e8f9;
  border: 1px solid rgba(34, 211, 238, 0.35);
}

.badge-purple {
  background: rgba(192, 132, 252, 0.15);
  color: #d8b4fe;
  border: 1px solid rgba(192, 132, 252, 0.35);
}

.badge-red {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.card-icon {
  font-size: 1.15rem;
}

.metric-big-val {
  font-size: 1.85rem;
  font-weight: 900;
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.metric-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-mini-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--bg-subcard);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
}

.mini-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.mini-col:hover {
  opacity: 0.85;
}

.mini-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 600;
}

.mini-val {
  font-size: 0.88rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.mini-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* Progress bar */
.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #f59e0b, #ef4444);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* ==========================================================================
   STATS OVERVIEW GRID
   ========================================================================== */
.stats-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 900px) {
  .stats-overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-box-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-box-num {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.stat-box-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ==========================================================================
   LIVE ACTIVE POSITIONS RADAR / MONITOR
   ========================================================================== */
.section-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-icon {
  font-size: 1.2rem;
}

.section-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.badge-count {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #7dd3fc;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.live-positions-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .live-positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .live-positions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Active Trade Radar Card */
.radar-card {
  background: #0d131f;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.radar-card:hover {
  transform: translateY(-2px);
  border-color: var(--bybit-blue);
}

.radar-card.profitable {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.radar-card.losing {
  border-color: rgba(239, 68, 68, 0.4);
}

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

.radar-symbol-group {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.radar-symbol {
  font-size: 1.05rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #fff;
}

.radar-dir-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.radar-mode-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.radar-pnl-banner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}

.radar-pnl-val {
  font-size: 1.4rem;
  font-weight: 900;
  font-family: var(--font-mono);
}

.radar-pnl-pct {
  font-size: 0.85rem;
  font-weight: 800;
  font-family: var(--font-mono);
}

.radar-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.radar-price-row {
  display: flex;
  flex-direction: column;
}

.radar-price-lbl {
  font-size: 0.68rem;
  color: var(--text-dim);
}

.radar-price-val {
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-main);
}

/* Progress bar TP/SL target */
.radar-target-progress {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.radar-target-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 700;
}

.radar-progress-track {
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.radar-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #10b981);
  transition: width 0.3s ease;
}

.radar-actions {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.2rem;
}

.empty-state-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.empty-icon {
  font-size: 2.2rem;
}

/* ==========================================================================
   TABS & DATA TABLE
   ========================================================================== */
.tab-nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.tab-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  color: #7dd3fc;
}

.table-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: left;
}

.custom-table th {
  background: #0c121e;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.custom-table td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  white-space: nowrap;
}

.custom-table tbody tr {
  transition: background 0.15s ease;
}

.custom-table tbody tr:hover {
  background: rgba(56, 189, 248, 0.04);
}

.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}

.page-info {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.page-btns {
  display: flex;
  gap: 0.4rem;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.modal-md {
  max-width: 600px;
}

.modal-lg {
  max-width: 900px;
}

.modal-header {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.btn-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.btn-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  padding: 1.4rem;
  overflow-y: auto;
}

.modal-footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

/* Settings Form Styles */
.settings-group {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.settings-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--bybit-blue);
  margin-bottom: 0.75rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.form-row label, .form-col label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-row small, .form-col small {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.form-row-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.form-row-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bybit-blue);
  cursor: pointer;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-input {
  background: #0a0e17;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.85rem;
  outline: none;
}

.form-input:focus {
  border-color: var(--bybit-blue);
}

/* Terminal Log View */
.terminal-container {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  background: #080c14;
  padding: 1rem;
  height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: #e2e8f0;
}

.terminal-line {
  word-break: break-all;
  line-height: 1.4;
}

/* Calendar Heatmap */
.calendar-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Footer */
.app-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 1rem 0;
}

.app-footer strong {
  color: var(--bybit-blue);
}

/* Utilities */
.text-green { color: var(--win-green) !important; }
.text-red { color: var(--loss-red) !important; }
.text-cyan { color: var(--cyan-sky) !important; }
.text-orange { color: var(--bybit-orange) !important; }
.text-purple { color: var(--purple-lab) !important; }
.text-gold { color: var(--gold-accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center !important; }
.font-mono { font-family: var(--font-mono) !important; }
.val-neutral { color: #f8fafc; }