
:root {
  --gs-text-primary: var(--color-brand-primary);
  --gs-text-secondary: var(--color-brand-secondary);
  --gs-background: var(--color-surface-base);
}

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


body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--gs-background);
  color: var(--gs-text-primary);
}

.text-muted {
  color: var(--gs-text-secondary) !important;
}









