:root {
  --bg-green: #1e3620;
  --card-bg: #ffffff;
  --card-text: #171717;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #171717;
}

a { color: inherit; }

.page-shell {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.brand-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
  width: 252px;
  height: auto;
  filter: brightness(0) invert(1);
  z-index: 1;
}


/* Game component styles */
@import url('../game/GameComponents.css');
