/* KONGO design tokens */
:root {
  --ink: #0e0710;
  --paper: #ffe8f1;
  --kongo-pink: #e84c7e;      /* primary body pink */
  --kongo-hot: #ff2e83;       /* hot pink accent */
  --kongo-deep: #a81e57;      /* shadow pink */
  --kongo-rose: #f7b1c8;      /* light rose */
  --kongo-blush: #ffd6e4;     /* blush */
  --kongo-sakura: #ffb7d0;    /* sakura */
  --kongo-torii: #2b5fb0;     /* torii blue */
  --kongo-torii-2: #3a78d6;
  --kongo-gold: #e7c56a;
  --kongo-teal: #7ed0d1;
  --kongo-cream: #f5f0c8;

  --border: 3px solid var(--ink);
  --border-fat: 5px solid var(--ink);
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-sticker: 4px 4px 0 var(--ink);

  --font-display: "Bagel Fat One", "Bungee", system-ui, sans-serif;
  --font-heading: "Rubik Mono One", "Bungee", system-ui, sans-serif;
  --font-body: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-hand: "Caveat Brush", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--kongo-pink);
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
