:root {
  --primary-color: #8cc461;
  --game-bg: #8cc461;
  --text-white: #ffffff;
  --text-dark: #333333;
  --text-grey: #808080;
  
  --color-rock: #0074b6; /* blue */
  --color-paper: #ffa500; /* orange */
  --color-scissors: #bd00ff; /* purple */
  --color-rules-bg: #004429;
  
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-score: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  --font-rules: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

body {
  margin: 0;
  background: var(--game-bg);
  font-family: var(--font-main);
  overflow-y: hidden;
  color: var(--text-white);
}

* {
  box-sizing: border-box;
}

/* Utilities */
.hidden {
  display: none !important;
}
