/* ====================================
   BASE STYLES - Reset & Global
   ==================================== */

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

html {
  /* Reserve space for scrollbar to prevent content jump */
  scrollbar-gutter: stable;
}

body {
  font-family: 'SF UI Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: #f5f7fa;
  color: #333;
  letter-spacing: -0.04em;
}

/* Apply tight letter-spacing to all text elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, select, label, li {
  letter-spacing: -0.04em;
}

/* Global link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* GLOBAL LETTER-SPACING */ * { letter-spacing: -0.04em !important; }
