:root {
  --paprika: #b91c1c;
  --saffron: #ea580c;
}

* { font-family: 'Vazirmatn', Tahoma, sans-serif !important; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(234,88,12,0.10), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(185,28,28,0.10), transparent 45%),
    linear-gradient(160deg, #fffbf5 0%, #fef3e8 100%);
  min-height: 100vh;
  color: #292524;
}

/* subtle warm pattern behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(234,88,12,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

#root { position: relative; z-index: 1; }

/* scrollbars */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: rgba(185,28,28,0.3); border-radius: 8px; }
::-webkit-scrollbar-track { background: transparent; }

input { font-family: 'Vazirmatn', Tahoma, sans-serif !important; }

/* staggered card entrance */
.bg-white\/90, main > div > * {
  animation: rise 0.4s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

button { -webkit-tap-highlight-color: transparent; }