*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
}

::selection {
  background: var(--gold-200);
  color: var(--navy-900);
}
