body {
  margin: 0;
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

#game-container {
  width: 100vw;
  height: 100vh;
}

.footer {
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

#start-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#start-screen input {
  padding: 8px;
  margin-top: 8px;
  font-size: 14px;
}

#start-screen button {
  padding: 8px 16px;
  margin-top: 12px;
  font-size: 14px;
  cursor: pointer;
}

#avatar-status {
  margin-top: 8px;
  font-size: 12px;
  color: #ff9999;
}
