/* Base Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  border-spacing: 0;
  outline: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: 1.5385;
}

h1, h2, h3, h4, h5 {
  font-weight: var(--font-weight-bold);
}

ul {
  list-style-type: none;
}

img {
  transition: all var(--transition-slow);
}

p, div, td {
  color: var(--color-text);
}

body {
  font-size: var(--font-size-base);
  overflow: hidden; /* Prevent page-level scroll */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Screen Reader Only - Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

