/* Modern dark theme – tek dosyadan renk yönetimi */
:root {
  --bg-page: #0c0c10;
  --bg-header: #0f0f14;
  --bg-card: #16161b;
  --bg-card-hover: #1c1c22;
  --border-subtle: rgba(255,255,255,0.06);
  --border-accent: rgba(56, 189, 248, 0.25);
  --text-primary: #fafafa;
  --text-muted: #a1a1aa;
  --accent: #38bdf8;
  --accent-hover: #7dd3fc;
  --cta: #10b981;
  --cta-hover: #34d399;
  --cta-shadow: rgba(16, 185, 129, 0.25);
}

body { background-color: var(--bg-page) !important; color: var(--text-primary) !important; }
.prose a, .prose-modern a { color: var(--accent); }
.prose a:hover, .prose-modern a:hover { color: var(--accent-hover); text-decoration: underline; }
