/* ================================
   Base Styles – Phase 2 Redesign
================================ */

* { 
  box-sizing: border-box; 
}

html, 
body { 
  height: 100%; 
}

body {
  margin: 0;
  font-family: var(--font);

  /* NEW BACKGROUND */
  background-color: var(--av-bg);

  /* NEW TEXT COLOR */
  color: var(--av-text-primary);
}

a { 
  color: inherit; 
  text-decoration: none; 
}

img { 
  display: block; 
  max-width: 100%; 
}

/* Updated focus style to match white hover system */
:focus-visible {
  outline: 2px solid var(--av-focus);
  outline-offset: 3px;
  border-radius: 0;
}