* {
  box-sizing: border-box;
  font-family: "Comic Sans MS", "Arial Rounded MT Bold", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: #fff3f8;
  overflow: hidden;
}

#game {
  display: block;
}

#ui {
  position: fixed;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 12px;
  z-index: 10;
}

#ui button {
  border: none;
  background: #ffb6c1;
  border-radius: 10px;
  padding: 4px 10px;
  cursor: pointer;
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 240, 250, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

#overlay.hidden {
  display: none;
}

#overlay h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

#overlay button {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 14px;
  border: none;
  background: #ff8fab;
  cursor: pointer;
}
