/* ===================== 1) Base fonts (Latin) ===================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@500;700&display=swap');

body, button, input, textarea, select {
  font-family: 'IBM Plex Sans', 'PeydaAuto', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 500;          /* کمی ضخیم‌تر از نرمال */
  font-size: 0.95rem;        /* کمی کوچک‌تر */
  line-height: 1.5;
}

/* ===================== 2) Persian font faces ===================== */
/* فقط روی گلیف‌های فارسی/عربی فعال می‌شود */
@font-face {
  font-family: 'PeydaAuto';
  src: url('https://stakeverse.net/fonts/peyda/PeydaWebFaNum-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+06F0-06F9;
}
@font-face {
  font-family: 'PeydaAuto';
  src: url('https://stakeverse.net/fonts/peyda/PeydaWebFaNum-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+06F0-06F9;
}

/* ===================== 3) Typography tweaks ===================== */
h1, h2, h3 {
  font-weight: 700;
}

/* ===================== 4) Rendering tweaks ===================== */
html, body {
  font-feature-settings: 'kern' 1, 'liga' 1;
  text-rendering: optimizeLegibility;
}

/* ------------------ Container Fix for Large Screens (fixed) ------------------ */
/* قبلاً همه‌ی .v-containerها (شامل هدر/فوتر) محدود می‌شدند و باعث مخفی‌شدن آواتار می‌شد. */
/* فقط محتوای اصلی (Vuetify: .v-main) را محدود کن و !important را حذف کن. */
@media (min-width: 1920px) {
  .v-main .v-container {
    max-width: 1300px;
    margin-inline: auto;
  }
}