/* Base styles (dark theme) */
:root {
  --bg: #000;
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --accent: #ff4d4d;
  --card: #111;
  --brand: #C8A951;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

main#content { min-height: 70vh; }

.site-footer {
  border-top: 1px solid #141414;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

.container { width: min(1600px, 96vw); margin: 0 auto; }

html { scroll-behavior: smooth; }


