body {
  margin: 0;
  padding: 0;
  background: #1e1e1e;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.menu-container {
  text-align: center;
}

.title {
  font-size: 3em;
  margin-bottom: 0;
  color: #ff4b4b;
}

.studio {
  font-size: 1.2em;
  margin-top: 0.2em;
  margin-bottom: 1.5em;
  color: #ccc;
}

.cover-image {
  width: 300px;
  height: auto;
  margin-bottom: 2em;
  border-radius: 10px;
  box-shadow: 0 0 10px #444;
}

.button-group button {
  font-size: 1.2em;
  padding: 0.6em 1.5em;
  margin: 0.5em;
  background-color: #ff4b4b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button-group button:hover {
  background-color: #ff2222;
}

/* Modal Rules */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #2a2a2a;
  padding: 2em;
  border-radius: 12px;
  text-align: center;
  width: 80%;
  max-width: 500px;
}

.modal-content h2 {
  color: #00ff88;
  margin-bottom: 1em;
}

.modal-content p {
  font-size: 1.1em;
  color: #ccc;
}

.modal-content button {
  margin-top: 1.5em;
  background-color: #00ff88;
  color: #000;
  border: none;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

canvas {
  border: 2px solid #fff;
  background-color: #121212;
  margin-top: 1em;
}

.game-ui {
  text-align: center;
  margin-bottom: 1em;
}

#message-box {
  font-weight: bold;
  color: #00ff88;
  margin-top: 0.5em;
}

#bonus-info {
  color: #ffcc00;
  font-size: 1em;
  margin: 0.5em 0;
}
