body {
  background-color: #f8faff;
  font-family: Verdana, sans-serif;
  text-align: center;
  color: #333;
  padding: 20px;
}

.game-wrapper {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border: 3px solid #336699;
  border-radius: 10px;
  background-color: white;
}

#router {
  font-size: 50px;
  margin: 20px 0;
}

#chips {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.chip {
  width: 80px;
  height: 80px;
  background-color: #336699;
  border-radius: 10px;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chip:hover {
  background-color: #285580;
}

#status {
  margin-top: 15px;
  font-weight: bold;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #336699;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #285580;
}

.footer-link {
  margin-top: 20px;
}
