:root {
  --warm-cream: #FFF8EE;
  --warm-parch: #FDEBD0;
  --warm-brown: #5C3A21;
}

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

body {
  margin: 0;
  color: var(--warm-brown);
  background: linear-gradient(135deg, #FFF3E0 0%, #FDE7CE 40%, #FBD9C0 100%);
  min-height: 100vh;
}

/* Warm atmospheric background with soft glow spots */
.warm-bg {
  position: relative;
  background:
    radial-gradient(circle at 85% 12%, rgba(251, 191, 36, 0.35), transparent 45%),
    radial-gradient(circle at 12% 80%, rgba(234, 88, 12, 0.22), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(231, 111, 81, 0.10), transparent 60%),
    linear-gradient(135deg, #FFF6EB 0%, #FDE9D2 45%, #FBDCC4 100%);
}

/* Warm card style */
.warm-card {
  background: rgba(255, 251, 244, 0.85);
  border: 1.5px solid rgba(217, 119, 6, 0.25);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px -6px rgba(234, 88, 12, 0.22),
              inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

/* Warm scrollbars */
.warm-scroll::-webkit-scrollbar { height: 8px; width: 8px; }
.warm-scroll::-webkit-scrollbar-track { background: rgba(253, 235, 208, 0.5); border-radius: 8px; }
.warm-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(#F59E0B, #EA580C);
  border-radius: 8px;
}
.warm-scroll { scrollbar-color: #EA580C rgba(253,235,208,0.5); scrollbar-width: thin; }

/* Confetti animation */
@keyframes confetti-fall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(105vh) rotate(720deg); opacity: 0.2; }
}
.confetti-piece {
  top: -20px;
  animation-name: confetti-fall;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
}

/* Page load fade-in */
#root {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inputs RTL friendly */
input, textarea { direction: rtl; text-align: right; }

/* Smooth transitions on interactive elements */
button { transition: all 0.15s ease; }
</parameter>
</invoke>