/* ═══════════════════════════════════════════════════════════════
   BorsaPusula Design Tokens — tek kaynak (single source of truth)
   Site Contract §1.5: component'ler bu değişkenlere referans verir,
   doğrudan renk hardcode ETMEZ.
   ═══════════════════════════════════════════════════════════════ */

/* ── Dark theme (default) ──────────────────────────────────── */
:root {
  /* Backgrounds */
  --bp-bg:        #0e0e12;
  --bp-surface:   #141416;
  --bp-surface2:  #1c1b1f;
  --bp-surface3:  #201f21;

  /* Borders */
  --bp-border:    #2a2a2c;
  --bp-border2:   #46464d;

  /* Text */
  --bp-text:      #e5e1e4;
  --bp-text2:     #c7c5cd;
  --bp-text3:     #909097;

  /* Brand */
  --bp-brand:     #b8c3ff;   /* periwinkle / electric violet */
  --bp-brand-d:   #0043eb;

  /* Signal: AL (buy) — neon mint */
  --bp-al:        #00e290;
  --bp-al-bg:     rgba(0, 226, 144, 0.07);
  --bp-al-bd:     rgba(0, 226, 144, 0.32);

  /* Signal: SAT (sell) — corruption red */
  --bp-sat:       #f85149;
  --bp-sat-bg:    #3d0f0f;
  --bp-sat-bd:    #da3633;

  /* Signal: BEKLİYOR (hold) */
  --bp-bkl:       #909097;
  --bp-bkl-bg:    #1e293b;
  --bp-bkl-bd:    #30363d;

  /* Accent */
  --bp-gold:      #f59e0b;

  /* Radius */
  --bp-radius:    6px;
  --bp-radius-sm: 3px;

  /* Compat aliases — eski stil kodlarıyla uyumluluk */
  --accent:       #b8c3ff;
  --bg2:          #141416;
}

