body {
  background: #f5f5f5;
  text-align: center;
  font-family: "微软雅黑", sans-serif;
  padding: 20px;
}

/* 等级经验显示 */
.level-info {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

/* 6块地的网格布局（2行3列） */
.farm-grid {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 20px;
  justify-content: center;
  margin: 30px auto;
}

/* 单块地样式 */
.land {
  width: 200px;
  height: 200px;
  background: #8b4513;
  border: 4px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* 按钮组样式 */
.btn-group {
  margin: 20px 0;
}

.btn-group select, .btn-group button {
  padding: 10px 20px;
  margin: 0 5px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

/* 金币信息样式 */
.info {
  font-size: 20px;
  margin-top: 20px;
}

/* 特殊状态样式（干旱/长草/生虫） */
.dry { background: #e65100; }
.weed { background: #4CAF50; }
.bug { background: #795548; }