/* ========================================
   استایل‌های پایه و ریست
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Vazirmatn', sans-serif !important;

}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* پس‌زمینه انیمیشن‌دار */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse at 10% 20%, rgba(244, 167, 185, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(232, 205, 232, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 184, 160, 0.15) 0%, transparent 60%);
  z-index: -1;
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from { opacity: 0.8; }
  to { opacity: 1; }
}
