/* Global resets and base styles */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-text-primary);
}

/* Utility classes */
.sc {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tnum {
  font-variant-numeric: tabular-nums;
}

/* Blazor error UI */
#blazor-error-ui {
  background: var(--color-surface);
  bottom: 0;
  box-shadow: var(--shadow-modal);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
