#game-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #0b74bf;
  color: #ffffff;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  width: 300px;
}
.modal-btn, .modal-close {
  display: inline-block;
  margin: 1em 0.5em 0;
  padding: 10px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.modal-btn {
  background: #4caf50;
  color: white;
}
.modal-close {
  background: #999;
  color: white;
}

#modal-title {
    color: #ffffff;
}

#modal-message {
    color: #ffffff;
}

.baby-spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}