/* Daily Deal Finder — Base Design System */

:root {
  --navy: #071b3a;
  --blue: #0c2f63;
  --gold: #f5a800;
  --ink: #142033;
  --muted: #667085;
  --cream: #fff8e8;
  --line: #eadfcf;
  --soft: #fff1c7;
  --card: #ffffff;
  --shadow: 0 24px 70px rgba(7, 27, 58, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: linear-gradient(180deg, #fff8e8 0%, #ffffff 42%, #f6f9ff 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}
