html, body {
  margin: 0; padding: 0;
  width: 100%; height: 100%;
  background: #06060c;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  -webkit-user-select: none; user-select: none;
  -webkit-tap-highlight-color: transparent;
}
#game {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  display: block;
  touch-action: none;
}
/* DOM layer only used for text inputs on the career-create screen */
#dom-layer {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 10;
}
#dom-layer .cfc-input {
  position: absolute;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  background: rgba(10, 12, 24, 0.85);
  border: 2px solid #e8b13c;
  border-radius: 8px;
  color: #fff;
  font: 700 20px "Arial Black", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 12px;
  outline: none;
  box-shadow: 0 0 24px rgba(232, 177, 60, 0.25);
  caret-color: #e8b13c;
}
#dom-layer .cfc-input:focus {
  border-color: #ffd76a;
  box-shadow: 0 0 32px rgba(255, 215, 106, 0.5);
}
#dom-layer .cfc-input::placeholder { color: #6b6f8a; letter-spacing: 1px; }
