:root {
  --bg: #12100e;
  --bg-card: #1c1713;
  --bg-elevated: #252019;
  --text: #f4efe8;
  --muted: #9c8f7d;
  --accent: #e5a855;
  --accent-dim: rgba(229, 168, 85, 0.12);
  --accent-hover: #f0c078;
  --line: #342c24;
  --radius: 14px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

a,
button {
  -webkit-tap-highlight-color: rgba(229, 168, 85, 0.2);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(229, 168, 85, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 35% at 100% 10%, rgba(140, 90, 50, 0.06), transparent 45%);
  background-size: 28px 28px, 28px 28px, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

section h2 {
  margin: 0 0 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.25);
  color: var(--accent-hover);
}
