:root {
  --opti-blue: #f2f2f2;
  --opti-dark: #1a1a2e;
  --muted: #6b7280;
  --light-bg: #f8f9fa;
  --accent: #ffb703;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

a {
  color: var(--opti-blue);
  text-decoration: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container-xl {
  max-width: 1160px
}

.bg-light-custom {
  background: var(--light-bg)
}

.text-opti-blue {
  color: var(--opti-blue)
}

.text-gray-800 {
  color: var(--opti-dark)
}