:root {
      --background: #fbfbfb;
      --foreground: #202530;
      --card: #ffffff;
      --card-foreground: #202530;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --accent: #D4AF37;
    }
    .dark {
      --background: #11141c;
      --foreground: #f3f4f6;
      --card: #181c26;
      --card-foreground: #f3f4f6;
      --muted: #1e2433;
      --muted-foreground: #9ca3af;
      --border: #2a3347;
      --accent: #D4AF37;
    }
    body {
      background-color: var(--background);
      color: var(--foreground);
      font-family: 'Inter', sans-serif;
    }
    [dir="rtl"] { text-align: right; }
    .no-scrollbar::-webkit-scrollbar { display: none; }
    .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
