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

:root {
  --primary:        #F5C518;
  --primary-hover:  #e6b800;
  --purple:         #5b21b6;
  --purple-light:   #7c3aed;
  --purple-dark:    #2a1845;
  --page-bg:        #f4f4f6;
  --surface:        #ffffff;
  --border:         #e5e7eb;
  --text:           #0f172a;
  --text-muted:     #6b7280;
  --error:          #ef4444;
  --success:        #22c55e;
  --radius-sm:      6px;
  --radius-md:      10px;
  --radius-lg:      14px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  min-height: 100vh;
}

.error   { color: var(--error);   font-size: .875rem; margin-top: .5rem; }
.success { color: var(--success); font-size: .875rem; margin-top: .5rem; }
