/* main.css — Sam's Coins */

:root {
  --bg: #f7f7f7;
  --ink: #222;
  --muted: #666;
  --link: #4a4aaa;
  --accent: #e0b646;
}

/* Subtle dotted background */
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg) url("/assets/img/bg.svg") repeat;
}

/* Layout */
.wrapper { max-width: 880px; margin: 0 auto; padding: 24px; }
header { display: flex; align-items: center; gap: 16px; margin: 24px 0; }
h1 { margin: 0; font-size: 1.8rem; letter-spacing: 0.3px; }

/* Logo size control */
.logo { height: 96px; width: auto; }

/* Footer */
footer { margin-top: 48px; padding-top: 16px; color: var(--muted); border-top: 1px solid #e6e6e6; font-size: 0.9rem; }
