* {
  box-sizing: border-box;
}

/* PAGE BACKGROUND – SOFT LIGHT BLUE */
.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
 background: #dbeafe;
  /* 👈 clean light blue */
  font-family: "Segoe UI", Arial, sans-serif;
}

/* GAME CARD */
.game-container {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  width: 360px;
  text-align: center;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* TITLE – DARK FOR CONTRAST */
.game-container h1 {
  margin: 0 0 18px;
  font-size: 26px;
  color: #1f2937;   /* 👈 dark gray (not pure black) */
}

/* RESULT TEXT */
#result {
  margin-bottom: 25px;
  font-size: 17px;
  font-weight: 600;
  color: #374151;
}

/* BUTTON ROW */
.buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

/* BUTTONS – SOFT BLUE */
button {
  width: 110px;
  height: 48px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: #6366f1;   /* 👈 nice blue */
  color: #ffffff;
  transition: background 0.2s ease, transform 0.15s ease;
}

/* HOVER */
button:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

/* CLICK */
button:active {
  transform: scale(0.95);
}

/* MOBILE */
@media (max-width: 420px) {
  .game-container {
    width: 90%;
  }
}
