/* ============================================
   Story Development Toolkit - Persian Styles
   Bootstrap RTL + Dark Theme
   Author: Milad Rezanezhad
   GitHub: https://github.com/miladrezanezhad
   ============================================ */

@import url('https://lib.arvancloud.ir/vazir-font/33.003/Vazirmatn-font-face.css');

:root {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --bg-card: #1c2128;
    --border: #30363d;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent: #58a6ff;
    --accent-hover: #79c0ff;
    --green: #3fb950;
    --yellow: #d2991d;
    --orange: #f0883e;
    --purple: #a371f7;
    --pink: #db61a2;
    --red: #f85149;
    --code-bg: #1a1a2e;
    --code-keyword: #ff7b72;
    --code-string: #a5d6ff;
    --code-function: #d2a8ff;
    --code-comment: #8b949e;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-fa: 'Vazirmatn', 'Tahoma', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', 'Monaco', monospace;
}

/* Base */
body {
    font-family: var(--font-fa);
  

}

