/* BODY */
body {
  height: 100vh;
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

/* TITLE */
h1 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #444;
}

/* STATUS */
.status {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #666;
}

/* GAME BOARD */
.game-board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

/* CELLS (soft pastel look) */
.cell {
  height: 100px;
  width: 100px;
  font-size: 2.5rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;

  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);

  color: #444;
  transition: all 0.2s ease;
}

.cell:hover {
  transform: translateY(-3px) scale(1.03);
  background: #f0f4ff;
}

.cell:active {
  transform: scale(0.95);
}

/* BUTTONS (cartoonish pop color) */
button {
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* MODAL */
.modal-content {
  background: #ffffff;
  color: #333;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}